Skip to content

Commit

Permalink
Merge pull request #36 from TeofilC/relax-bounds
Browse files Browse the repository at this point in the history
Relax bounds
  • Loading branch information
msakai authored Nov 26, 2024
2 parents 6975eaf + f5bf887 commit 0a11b0e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
18 changes: 9 additions & 9 deletions decision-diagrams.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ library
ViewPatterns
build-depends:
base >=4.11.0.0 && <5
, containers >=0.5.11.0 && <0.7
, hashable >=1.2.7.0 && <1.5
, containers >=0.5.11.0 && <0.8
, hashable >=1.2.7.0 && <1.6
, hashtables >=1.2.3.1 && <1.4
, intern >=0.9.1.2 && <1.0.0.0
, mwc-random >=0.13.6.0 && <0.16
, primitive >=0.6.3.0 && <0.8
, primitive >=0.6.3.0 && <0.10
, random >=1.1 && <1.3
, reflection >=2.1.4 && <2.2
, unordered-containers >=0.2.9.0 && <0.3
Expand All @@ -76,7 +76,7 @@ test-suite decision-diagrams-doctest
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.11.0.0 && <5
, containers >=0.5.11.0 && <0.7
, containers >=0.5.11.0 && <0.8
, decision-diagrams
, doctest
, mwc-random >=0.13.6.0 && <0.16
Expand All @@ -101,17 +101,17 @@ test-suite decision-diagrams-test
TemplateHaskell
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
QuickCheck >=2.11.3 && <2.15
QuickCheck >=2.11.3 && <2.16
, base >=4.11.0.0 && <5
, containers >=0.5.11.0 && <0.7
, containers >=0.5.11.0 && <0.8
, decision-diagrams
, deepseq >=1.4.3.0 && <1.5
, deepseq >=1.4.3.0 && <1.6
, mwc-random >=0.13.6.0 && <0.16
, quickcheck-instances >=0.3.19 && <0.4
, statistics >=0.14.0.2 && <0.17
, tasty >=1.1.0.4 && <1.5
, tasty >=1.1.0.4 && <1.6
, tasty-hunit >=0.10.0.1 && <0.11
, tasty-quickcheck ==0.10.*
, tasty-quickcheck >=0.10 && <0.12
, tasty-th >=0.1.7 && <0.2
, vector >=0.12.0.2 && <0.14
default-language: Haskell2010
14 changes: 7 additions & 7 deletions package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ description: Please see the README on GitHub at <https://github.com/msak

dependencies:
- base >=4.11.0.0 && <5
- containers >=0.5.11.0 && <0.7
- containers >=0.5.11.0 && <0.8
- mwc-random >=0.13.6.0 && <0.16

other-extensions:
Expand All @@ -36,10 +36,10 @@ library:
other-modules:
- Data.DecisionDiagram.BDD.Internal.Node
dependencies:
- hashable >=1.2.7.0 && <1.5
- hashable >=1.2.7.0 && <1.6
- hashtables >=1.2.3.1 && <1.4
- intern >=0.9.1.2 && <1.0.0.0
- primitive >=0.6.3.0 && <0.9
- primitive >=0.6.3.0 && <0.10
- random >=1.1 && <1.3
- reflection >=2.1.4 && <2.2
- unordered-containers >=0.2.9.0 && <0.3
Expand All @@ -64,13 +64,13 @@ tests:
- -with-rtsopts=-N
dependencies:
- decision-diagrams
- deepseq >=1.4.3.0 && <1.5
- QuickCheck >=2.11.3 && <2.15
- deepseq >=1.4.3.0 && <1.6
- QuickCheck >=2.11.3 && <2.16
- quickcheck-instances >=0.3.19 && <0.4
- statistics >=0.14.0.2 && <0.17
- tasty >=1.1.0.4 && <1.5
- tasty >=1.1.0.4 && <1.6
- tasty-hunit >=0.10.0.1 && <0.11
- tasty-quickcheck >=0.10 && <0.11
- tasty-quickcheck >=0.10 && <0.12
- tasty-th >=0.1.7 && <0.2
- vector >=0.12.0.2 && <0.14
other-extensions:
Expand Down

0 comments on commit 0a11b0e

Please sign in to comment.