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
|
--- a/test-framework.cabal
+++ b/test-framework.cabal
@@ -45,21 +45,21 @@ Library
Test.Framework.Utilities
Build-Depends: base >= 4.3 && < 5
- , ansi-terminal >= 0.4.0 && < 0.9
+ , ansi-terminal >= 0.4.0 && < 0.12
, ansi-wl-pprint >= 0.5.1 && < 0.7
- , random >= 1.0 && < 1.2
- , containers >= 0.1 && < 0.6
- , regex-posix >= 0.72 && < 0.96
+ , random >= 1.0 && < 1.3
+ , containers >= 0.1 && < 0.7
+ , regex-posix >= 0.72 && < 0.97
, old-locale >= 1.0 && < 1.1
- , time >= 1.1.2 && < 1.9
+ , time >= 1.1.2 && < 1.13
, xml >= 1.3.5 && < 1.4
, hostname >= 1.0 && < 1.1
if !impl(ghc >= 7.8)
- Build-Depends: base-orphans >= 0.1 && < 0.5
+ Build-Depends: base-orphans >= 0.1 && < 0.9
if !impl(ghc >= 8.0)
- Build-Depends: semigroups >= 0.18 && < 0.19
+ Build-Depends: semigroups >= 0.18 && < 0.21
Default-Language: Haskell2010
Default-Extensions: CPP
@@ -89,7 +89,7 @@ Test-Suite test-framework-tests
-- Buildable: False
Build-Depends: HUnit >= 1.2
- , QuickCheck >= 2.3 && < 2.10
+ , QuickCheck >= 2.3 && < 2.15
, base >= 4.3
, random >= 1.0
, containers >= 0.1
|