File tree 2 files changed +23
-24
lines changed
2 files changed +23
-24
lines changed Original file line number Diff line number Diff line change @@ -34,13 +34,13 @@ library
34
34
hs-source-dirs :
35
35
src
36
36
build-depends :
37
- array
37
+ array >= 0.5 && < 1
38
38
, base >= 4.7 && < 5
39
- , bytestring
40
- , containers
41
- , mtl
42
- , text
43
- , word8
39
+ , bytestring >= 0.10 && < 1
40
+ , containers >= 0.6 && < 1
41
+ , mtl >= 2.2 && < 3
42
+ , text >= 1.2 && < 3
43
+ , word8 >= 0.1 && < 1
44
44
default-language : Haskell2010
45
45
46
46
executable dump-state-machine
@@ -52,6 +52,7 @@ executable dump-state-machine
52
52
ghc-options : -threaded -rtsopts -with-rtsopts=-N
53
53
build-depends :
54
54
base >= 4.7 && < 5
55
+ , bytestring >= 0.10 && < 1
55
56
, json-validator
56
57
default-language : Haskell2010
57
58
@@ -64,7 +65,7 @@ executable json-test
64
65
ghc-options : -threaded -rtsopts -with-rtsopts=-N
65
66
build-depends :
66
67
base >= 4.7 && < 5
67
- , bytestring
68
+ , bytestring >= 0.10 && < 1
68
69
, json-validator
69
70
default-language : Haskell2010
70
71
@@ -76,11 +77,11 @@ executable json-validator-exe
76
77
app
77
78
ghc-options : -threaded -rtsopts -with-rtsopts=-N
78
79
build-depends :
79
- aeson
80
+ aeson >= 1.5 && < 3
80
81
, base >= 4.7 && < 5
81
- , bytestring
82
- , criterion
82
+ , bytestring >= 0.10 && < 1
83
+ , criterion >= 1.5 && < 2
83
84
, json-validator
84
- , parallel
85
- , text
85
+ , parallel >= 3.2 && < 4
86
+ , text >= 1.2 && < 3
86
87
default-language : Haskell2010
Original file line number Diff line number Diff line change @@ -18,29 +18,28 @@ tested-with: GHC ==8.10.7 || ==9.4.8 || ==9.8.2 || ==9.10.1 || ==9.12.1
18
18
19
19
dependencies :
20
20
- base >= 4.7 && < 5
21
+ - bytestring >= 0.10 && < 1
21
22
22
23
library :
23
24
source-dirs : src
24
25
dependencies :
25
- - bytestring
26
- - containers
27
- - mtl
28
- - text
29
- - word8
30
- - array
26
+ - array >= 0.5 && < 1
27
+ - containers >= 0.6 && < 1
28
+ - mtl >= 2.2 && < 3
29
+ - text >= 1.2 && < 3
30
+ - word8 >= 0.1 && < 1
31
31
32
32
executables :
33
33
json-validator-exe :
34
34
source-dirs : app
35
35
main : Main.hs
36
36
ghc-options : -threaded -rtsopts -with-rtsopts=-N
37
37
dependencies :
38
- - bytestring
39
- - text
40
38
- json-validator
41
- - criterion
42
- - aeson
43
- - parallel
39
+ - aeson >= 1.5 && < 3
40
+ - criterion >= 1.5 && < 2
41
+ - parallel >= 3.2 && < 4
42
+ - text >= 1.2 && < 3
44
43
45
44
dump-state-machine :
46
45
source-dirs : dump-state-machine
@@ -55,4 +54,3 @@ executables:
55
54
ghc-options : -threaded -rtsopts -with-rtsopts=-N
56
55
dependencies :
57
56
- json-validator
58
- - bytestring
You can’t perform that action at this time.
0 commit comments