Skip to content

Commit a4f64d1

Browse files
committed
bounds wanted
1 parent db0b082 commit a4f64d1

File tree

2 files changed

+23
-24
lines changed

2 files changed

+23
-24
lines changed

json-validator.cabal

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ library
2828
hs-source-dirs:
2929
src
3030
build-depends:
31-
array
31+
array >=0.5 && <1
3232
, base >=4.7 && <5
33-
, bytestring
34-
, containers
35-
, mtl
36-
, text
37-
, word8
33+
, bytestring >=0.10 && <1
34+
, containers >=0.6 && <1
35+
, mtl >=2.2 && <3
36+
, text >=1.2 && <3
37+
, word8 >=0.1 && <1
3838
default-language: Haskell2010
3939

4040
executable dump-state-machine
@@ -46,6 +46,7 @@ executable dump-state-machine
4646
ghc-options: -threaded -rtsopts -with-rtsopts=-N
4747
build-depends:
4848
base >=4.7 && <5
49+
, bytestring >=0.10 && <1
4950
, json-validator
5051
default-language: Haskell2010
5152

@@ -58,7 +59,7 @@ executable json-test
5859
ghc-options: -threaded -rtsopts -with-rtsopts=-N
5960
build-depends:
6061
base >=4.7 && <5
61-
, bytestring
62+
, bytestring >=0.10 && <1
6263
, json-validator
6364
default-language: Haskell2010
6465

@@ -70,11 +71,11 @@ executable json-validator-exe
7071
app
7172
ghc-options: -threaded -rtsopts -with-rtsopts=-N
7273
build-depends:
73-
aeson
74+
aeson >=1.5 && <3
7475
, base >=4.7 && <5
75-
, bytestring
76-
, criterion
76+
, bytestring >=0.10 && <1
77+
, criterion >=1.5 && <2
7778
, json-validator
78-
, parallel
79-
, text
79+
, parallel >=3.2 && <4
80+
, text >=1.2 && <3
8081
default-language: Haskell2010

package.yaml

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,29 +17,28 @@ tested-with: GHC ==8.10.7 || ==9.4.8 || ==9.8.2 || ==9.10.1 || ==9.12.1
1717

1818
dependencies:
1919
- base >= 4.7 && < 5
20+
- bytestring >= 0.10 && < 1
2021

2122
library:
2223
source-dirs: src
2324
dependencies:
24-
- bytestring
25-
- containers
26-
- mtl
27-
- text
28-
- word8
29-
- array
25+
- array >= 0.5 && < 1
26+
- containers >= 0.6 && < 1
27+
- mtl >= 2.2 && < 3
28+
- text >= 1.2 && < 3
29+
- word8 >= 0.1 && < 1
3030

3131
executables:
3232
json-validator-exe:
3333
source-dirs: app
3434
main: Main.hs
3535
ghc-options: -threaded -rtsopts -with-rtsopts=-N
3636
dependencies:
37-
- bytestring
38-
- text
3937
- json-validator
40-
- criterion
41-
- aeson
42-
- parallel
38+
- aeson >= 1.5 && < 3
39+
- criterion >= 1.5 && < 2
40+
- parallel >= 3.2 && < 4
41+
- text >= 1.2 && < 3
4342

4443
dump-state-machine:
4544
source-dirs: dump-state-machine
@@ -54,4 +53,3 @@ executables:
5453
ghc-options: -threaded -rtsopts -with-rtsopts=-N
5554
dependencies:
5655
- json-validator
57-
- bytestring

0 commit comments

Comments
 (0)