commit 39b3deab7c57c497a2d88c63a75156a7f4391302
parent e3b6ffb111ba0a011bc5a536394c9b009b45fb75
Author: Jared Tobin <jared@jtobin.io>
Date: Thu, 17 Oct 2024 18:03:23 +0400
lib: dep bounds
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/ppad-secp256k1.cabal b/ppad-secp256k1.cabal
@@ -26,10 +26,10 @@ library
exposed-modules:
Crypto.Curve.Secp256k1
build-depends:
- base
- , bytestring
- , ppad-hmac-drbg
- , ppad-sha256
+ base >= 4.9 && < 5
+ , bytestring >= 0.9 && < 0.13
+ , ppad-hmac-drbg >= 0.1 && < 0.2
+ , ppad-sha256 >= 0.2 && < 0.3
test-suite secp256k1-tests
type: exitcode-stdio-1.0