1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
Index: b/integer-logarithms.cabal
===================================================================
--- a/integer-logarithms.cabal
+++ b/integer-logarithms.cabal
@@ -1,5 +1,6 @@
name: integer-logarithms
version: 1.0.3.1
+x-revision: 4
cabal-version: >=1.10
author: Daniel Fischer
copyright:
@@ -34,7 +35,11 @@ tested-with:
|| ==8.4.4
|| ==8.6.4
|| ==8.8.4
- || ==8.10.2
+ || ==8.10.4
+ || ==9.0.2
+ || ==9.2.5
+ || ==9.4.4
+ || ==9.6.1
, GHCJS ==8.4
extra-source-files:
@@ -56,8 +61,8 @@ library
hs-source-dirs: src
build-depends:
array >=0.3 && <0.6
- , base >=4.3 && <4.16
- , ghc-prim >=0 && <0.8
+ , base >=4.3 && <4.19
+ , ghc-prim <0.11
if !impl(ghc >=7.10)
build-depends: nats >=1.1.2 && <1.2
@@ -65,7 +70,7 @@ library
if impl(ghc >=9.0)
build-depends:
base >=4.15
- , ghc-bignum >=1.0 && <1.1
+ , ghc-bignum >=1.0 && <1.4
if !flag(integer-gmp)
build-depends: invalid-cabal-flag-settings <0
@@ -118,7 +123,7 @@ test-suite spec
, integer-logarithms
, QuickCheck >=2.14.1 && <2.15
, smallcheck >=1.2 && <1.3
- , tasty >=0.10 && <1.4
+ , tasty >=0.10 && <1.5
, tasty-hunit >=0.9 && <0.11
, tasty-quickcheck >=0.8 && <0.11
, tasty-smallcheck >=0.8 && <0.9
|