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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
Index: b/binary-orphans.cabal
===================================================================
--- a/binary-orphans.cabal
+++ b/binary-orphans.cabal
@@ -9,9 +9,16 @@ author: Oleg Grenrus <oleg.grenr
maintainer: Oleg Grenrus <oleg.grenrus@iki.fi>
license: BSD3
license-file: LICENSE
-tested-with: GHC==7.6.3, GHC==7.8.4, GHC==7.10.3, GHC==8.0.2, GHC==8.2.1
build-type: Simple
cabal-version: >= 1.10
+tested-with:
+ GHC==7.6.3,
+ GHC==7.8.4,
+ GHC==7.10.3,
+ GHC==8.0.2,
+ GHC==8.2.2,
+ GHC==8.4.3,
+ GHC==8.6.1
extra-source-files:
CHANGELOG.md
@@ -26,13 +33,13 @@ library
src
ghc-options: -Wall -fno-warn-orphans
build-depends:
- base >=4.6.0.1 && <4.11
- , aeson >=0.7.0.6 && <1.3
- , binary >=0.5.1.1 && <0.8.6 || ==0.9.0.0
+ base >=4.6.0.1 && <4.13
+ , aeson >=0.7.0.6 && <1.5
+ , binary >=0.5.1.1 && <0.8.7 || ==0.9.0.0 || ==0.10.0.0
, case-insensitive >=1.2.0.4 && <1.2.1
, hashable >=1.2.3.3 && <1.3
, scientific >=0.3.3.8 && <0.4
- , tagged >=0.7.3 && <0.8.6
+ , tagged >=0.7.3 && <0.8.7
, text >=1.2.0.6 && <1.3
, time >=1.4.0.1 && <1.9
, unordered-containers >=0.2.5.1 && <0.3
@@ -41,7 +48,7 @@ library
, vector-binary-instances >=0.2.1.0 && <0.3
if !impl(ghc >= 8.0)
build-depends:
- semigroups >=0.16.2.2 && <0.18.4
+ semigroups >=0.16.2.2 && <0.18.6
if !impl(ghc >= 7.10)
build-depends:
void >=0.7 && <0.8
@@ -69,15 +76,15 @@ test-suite binary-orphans-test
, unordered-containers
, vector
, binary-orphans
- , QuickCheck >=2.10 && <2.11
+ , QuickCheck >=2.10 && <2.13
, quickcheck-instances >=0.3.16 && <0.4
- , tasty >=0.10.1.2 && <0.12
- , tasty-quickcheck >=0.8.3.2 && <0.10
+ , tasty >=0.10.1.2 && <1.2
+ , tasty-quickcheck >=0.8.3.2 && <0.11
if !impl(ghc >= 8.0)
build-depends:
- semigroups >=0.16.2.2 && <0.18.3
+ semigroups
if !impl(ghc >= 7.10)
build-depends:
- void >=0.7 && <0.8
- , nats >=1 && <1.2
+ void
+ , nats
default-language: Haskell2010
|