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
|
Index: b/deepseq-generics.cabal
===================================================================
--- a/deepseq-generics.cabal
+++ b/deepseq-generics.cabal
@@ -1,5 +1,7 @@
name: deepseq-generics
version: 0.2.0.0
+x-revision: 7
+
synopsis: GHC.Generics-based Control.DeepSeq.rnf implementation
homepage: https://github.com/hvr/deepseq-generics
bug-reports: https://github.com/hvr/deepseq-generics/issues
@@ -11,7 +13,21 @@ copyright: 2012, Herbert Valer
category: Control
build-type: Simple
cabal-version: >=1.10
-tested-with: GHC==8.0.*, GHC==7.10.*, GHC==7.8.*, GHC==7.6.*, GHC==7.4.*
+
+tested-with:
+ GHC == 9.2.*
+ GHC == 9.0.*
+ GHC == 8.10.*
+ GHC == 8.8.*
+ GHC == 8.6.*
+ GHC == 8.4.*
+ GHC == 8.2.2
+ GHC == 8.0.2
+ GHC == 7.10.3
+ GHC == 7.8.4
+ GHC == 7.6.3
+ GHC == 7.4.*
+
description:
This package provides a "GHC.Generics"-based
'Control.DeepSeq.Generics.genericRnf' function which can be used
@@ -42,7 +58,9 @@ source-repository head
library
default-language: Haskell2010
exposed-modules: Control.DeepSeq.Generics
- build-depends: base >= 4.5 && < 4.10, ghc-prim >= 0.2 && < 0.6, deepseq >= 1.2.0.1 && < 1.5
+ build-depends: base >= 4.5 && < 4.17
+ , ghc-prim >= 0.2 && < 0.9
+ , deepseq >= 1.2.0.1 && < 1.5
other-extensions: BangPatterns, FlexibleContexts, TypeOperators
ghc-options: -Wall
@@ -60,6 +78,6 @@ test-suite deepseq-generics-tests
deepseq-generics,
ghc-prim,
-- end of packages with inherited version constraints
- test-framework,
- test-framework-hunit,
- HUnit
+ test-framework >= 0.6.1 && < 0.9,
+ test-framework-hunit >= 0.2.2 && < 0.9,
+ HUnit >= 1.2.5 && < 1.7
|