Tighten bounds on packages
This commit is contained in:
parent
8754c21244
commit
a7c5be93dc
|
@ -45,21 +45,26 @@ library
|
||||||
build-depends:
|
build-depends:
|
||||||
semigroups
|
semigroups
|
||||||
build-depends:
|
build-depends:
|
||||||
aeson,
|
-- The lower bounds are based on GHC 7.10.3
|
||||||
array,
|
-- The upper bounds are based on GHC 9.4.3
|
||||||
|
aeson >= 1.4.0 && < 2.2,
|
||||||
|
array >= 0.5.1 && < 0.6,
|
||||||
base >= 4.8.0.0 && < 5,
|
base >= 4.8.0.0 && < 5,
|
||||||
bytestring,
|
bytestring >= 0.10.6 && < 0.12,
|
||||||
containers >= 0.5,
|
containers >= 0.5.6 && < 0.7,
|
||||||
deepseq >= 1.4.0.0,
|
deepseq >= 1.4.1 && < 1.5,
|
||||||
Diff >= 0.2.0,
|
Diff >= 0.4.0 && < 0.5,
|
||||||
directory >= 1.2.3.0,
|
fgl >= 5.7.0 && < 5.9,
|
||||||
fgl,
|
filepath >= 1.4.0 && < 1.5,
|
||||||
filepath,
|
mtl >= 2.2.2 && < 2.3,
|
||||||
mtl >= 2.2.1,
|
parsec >= 3.1.14 && < 3.2,
|
||||||
parsec,
|
QuickCheck >= 2.14.2 && < 2.15,
|
||||||
QuickCheck >= 2.7.4,
|
regex-tdfa >= 1.2.0 && < 1.4,
|
||||||
regex-tdfa,
|
transformers >= 0.4.2 && < 0.6,
|
||||||
transformers,
|
|
||||||
|
-- getXdgDirectory from 1.2.3.0
|
||||||
|
directory >= 1.2.3 && < 1.4,
|
||||||
|
|
||||||
-- When cabal supports it, move this to setup-depends:
|
-- When cabal supports it, move this to setup-depends:
|
||||||
process
|
process
|
||||||
exposed-modules:
|
exposed-modules:
|
||||||
|
@ -101,17 +106,17 @@ executable shellcheck
|
||||||
build-depends:
|
build-depends:
|
||||||
aeson,
|
aeson,
|
||||||
array,
|
array,
|
||||||
base >= 4 && < 5,
|
base,
|
||||||
bytestring,
|
bytestring,
|
||||||
containers,
|
containers,
|
||||||
deepseq >= 1.4.0.0,
|
deepseq,
|
||||||
Diff >= 0.2.0,
|
Diff,
|
||||||
directory >= 1.2.3.0,
|
directory,
|
||||||
fgl,
|
fgl,
|
||||||
mtl >= 2.2.1,
|
mtl,
|
||||||
filepath,
|
filepath,
|
||||||
parsec >= 3.0,
|
parsec,
|
||||||
QuickCheck >= 2.7.4,
|
QuickCheck,
|
||||||
regex-tdfa,
|
regex-tdfa,
|
||||||
transformers,
|
transformers,
|
||||||
ShellCheck
|
ShellCheck
|
||||||
|
@ -123,17 +128,17 @@ test-suite test-shellcheck
|
||||||
build-depends:
|
build-depends:
|
||||||
aeson,
|
aeson,
|
||||||
array,
|
array,
|
||||||
base >= 4 && < 5,
|
base,
|
||||||
bytestring,
|
bytestring,
|
||||||
containers,
|
containers,
|
||||||
deepseq >= 1.4.0.0,
|
deepseq,
|
||||||
Diff >= 0.2.0,
|
Diff,
|
||||||
directory >= 1.2.3.0,
|
directory,
|
||||||
fgl,
|
fgl,
|
||||||
filepath,
|
filepath,
|
||||||
mtl >= 2.2.1,
|
mtl,
|
||||||
parsec,
|
parsec,
|
||||||
QuickCheck >= 2.7.4,
|
QuickCheck,
|
||||||
regex-tdfa,
|
regex-tdfa,
|
||||||
transformers,
|
transformers,
|
||||||
ShellCheck
|
ShellCheck
|
||||||
|
|
Loading…
Reference in New Issue