hashing 0.1.0.1 → 0.1.1.0
raw patch · 1 files changed
+2/−2 lines, 1 filesdep ~basedep ~bytestringPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base, bytestring
API changes (from Hackage documentation)
- Crypto.Hash: hash :: (HashAlgorithm a) => ByteString -> a
+ Crypto.Hash: hash :: HashAlgorithm a => ByteString -> a
- Crypto.Hash: hashLazy :: (HashAlgorithm a) => ByteString -> a
+ Crypto.Hash: hashLazy :: HashAlgorithm a => ByteString -> a
Files
- hashing.cabal +2/−2
hashing.cabal view
@@ -1,5 +1,5 @@ name: hashing-version: 0.1.0.1+version: 0.1.1.0 synopsis: A pure haskell library implements several hash algorithms. description: hashing is a pure haskell hash library, supported hash algorithm: SHA1/SHA224/SHA256/SHA384/SHA512 MD5 and Whirlpool. It provides a simple interface ``hash`` and ``hashLazy`` to compute a hash value@@ -30,7 +30,7 @@ , Crypto.Hash.Whirlpool build-depends: array >= 0.5.1.0 && < 0.6 , base >= 4.7 && < 5- , bytestring >= 0.10.6.0 && < 0.11+ , bytestring >= 0.10.6.0 && < 0.12 default-language: Haskell2010 executable hashing-exe