raaz 0.1.0 → 0.1.1
raw patch · 2 files changed
+6/−6 lines, 2 filesdep ~raaz
Dependency ranges changed: raaz
Files
- Raaz/Core/Types/Endian.hs +3/−3
- raaz.cabal +3/−3
Raaz/Core/Types/Endian.hs view
@@ -289,19 +289,19 @@ instance EndianStore (LE Word64) where- load = fmap byteSwap64 <$> peek+ load ptr = fmap byteSwap64 <$> peek ptr store ptr = poke ptr . fmap byteSwap64 adjustEndian = c_Swap64Array . unLEPtr instance EndianStore (BE Word32) where load = peek- store ptr = poke+ store = poke adjustEndian _ _ = return () instance EndianStore (BE Word64) where load = peek- store ptr = poke+ store = poke adjustEndian _ _ = return () # else
raaz.cabal view
@@ -1,5 +1,5 @@ name: raaz-version: 0.1.0+version: 0.1.1 synopsis: The raaz cryptographic library. @@ -240,7 +240,7 @@ other-modules: Command.Checksum , Command.Rand build-depends: base- , raaz == 0.1.0+ , raaz == 0.1.1 if impl(ghc < 8) -- 'transformers' needed for "Control.Monad.IO.Class" only -- starting with base-4.9 we don't need 'transformers' anymore@@ -291,7 +291,7 @@ , QuickCheck >= 2.4 , hspec , transformers- , raaz == 0.1.0+ , raaz == 0.1.1 , vector ---------------------------------------------- Bench marks -----------------------------------------