Skip to content

Commit

Permalink
Bumped the upper bound of the containers dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
blamario committed May 18, 2024
1 parent bed1001 commit 9c9eb3b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions grammatical-parsers/grammatical-parsers.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ library
default-language: Haskell2010
ghc-options: -Wall
build-depends: base >=4.9 && <5,
containers >= 0.4 && < 0.7,
containers >= 0.4 && < 0.8,
transformers >= 0.5 && < 0.7,
monoid-subclasses >=1.0 && <1.3,
parsers < 0.13,
Expand All @@ -63,7 +63,7 @@ executable arithmetic
main-is: Main.hs
other-modules: Arithmetic, Boolean, Combined, Comparisons, Conditionals, Lambda, Utilities
default-language: Haskell2010
build-depends: base >=4.9 && <5, containers >= 0.5.7.0 && < 0.7,
build-depends: base >=4.9 && <5, containers >= 0.5.7.0 && < 0.8,
parsers < 0.13,
rank2classes >= 1.0.2 && < 1.6, grammatical-parsers,
monoid-subclasses
Expand All @@ -73,7 +73,7 @@ executable boolean-transformations
main-is: BooleanTransformations.hs
other-modules: Boolean, Utilities
default-language: Haskell2010
build-depends: base >=4.9 && <5, containers >= 0.5.7.0 && < 0.7,
build-depends: base >=4.9 && <5, containers >= 0.5.7.0 && < 0.8,
parsers < 0.13,
rank2classes >= 1.0.2 && < 1.6, grammatical-parsers,
monoid-subclasses
Expand All @@ -82,7 +82,7 @@ test-suite quicktests
type: exitcode-stdio-1.0
hs-source-dirs: test, examples
x-uses-tf: true
build-depends: base >=4.9 && < 5, containers >= 0.5.7.0 && < 0.7,
build-depends: base >=4.9 && < 5, containers >= 0.5.7.0 && < 0.8,
monoid-subclasses, parsers < 0.13,
witherable == 0.4.*,
rank2classes >= 1.0.2 && < 1.6, grammatical-parsers,
Expand All @@ -109,7 +109,7 @@ benchmark benchmarks
ghc-options: -O2 -Wall -rtsopts -main-is Benchmark.main
Build-Depends: base >=4.9 && < 5, rank2classes >= 1.0.2 && < 1.6, grammatical-parsers,
monoid-subclasses, parsers < 0.13,
criterion >= 1.0, deepseq >= 1.1, containers >= 0.5.7.0 && < 0.7, text >= 1.1
criterion >= 1.0, deepseq >= 1.1, containers >= 0.5.7.0 && < 0.8, text >= 1.1
main-is: Benchmark.hs
other-modules: Main, Arithmetic, Boolean, Combined, Comparisons, Conditionals, Lambda, Utilities
default-language: Haskell2010

0 comments on commit 9c9eb3b

Please sign in to comment.