bip39

BIP39 mnemonic codes in Haskell (docs.ppad.tech/bip39).
git clone git://git.ppad.tech/bip39.git
Log | Files | Refs | README | LICENSE

commit 50c2fb9204d7e9f9cea17d4ed0307bca74c27276
parent 4f41d5587e4b03db58575a41ca760ff3d04b2cc5
Author: Jared Tobin <jared@jtobin.io>
Date:   Thu, 27 Feb 2025 17:16:53 +0400

lib: version bounds

Diffstat:
Mppad-bip39.cabal | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/ppad-bip39.cabal b/ppad-bip39.cabal @@ -29,12 +29,12 @@ library build-depends: base >= 4.9 && < 5 , bytestring >= 0.9 && < 0.13 - , ppad-pbkdf - , ppad-sha256 - , ppad-sha512 - , primitive - , text - , text-icu + , ppad-pbkdf >= 0.1 && < 0.2 + , ppad-sha256 >= 0.2.3 && < 0.3 + , ppad-sha512 >= 0.1.3 && < 0.2 + , primitive >= 0.8 && < 0.10 + , text >= 2.1 && < 2.2 + , text-icu >= 0.8 && < 0.9 test-suite bip39-tests type: exitcode-stdio-1.0