File tree Expand file tree Collapse file tree 2 files changed +23
-24
lines changed Expand file tree Collapse file tree 2 files changed +23
-24
lines changed Original file line number Diff line number Diff line change @@ -28,13 +28,13 @@ library
28
28
hs-source-dirs :
29
29
src
30
30
build-depends :
31
- array
31
+ array >= 0.5 && < 1
32
32
, 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
38
38
default-language : Haskell2010
39
39
40
40
executable dump-state-machine
@@ -46,6 +46,7 @@ executable dump-state-machine
46
46
ghc-options : -threaded -rtsopts -with-rtsopts=-N
47
47
build-depends :
48
48
base >= 4.7 && < 5
49
+ , bytestring >= 0.10 && < 1
49
50
, json-validator
50
51
default-language : Haskell2010
51
52
@@ -58,7 +59,7 @@ executable json-test
58
59
ghc-options : -threaded -rtsopts -with-rtsopts=-N
59
60
build-depends :
60
61
base >= 4.7 && < 5
61
- , bytestring
62
+ , bytestring >= 0.10 && < 1
62
63
, json-validator
63
64
default-language : Haskell2010
64
65
@@ -70,11 +71,11 @@ executable json-validator-exe
70
71
app
71
72
ghc-options : -threaded -rtsopts -with-rtsopts=-N
72
73
build-depends :
73
- aeson
74
+ aeson >= 1.5 && < 3
74
75
, base >= 4.7 && < 5
75
- , bytestring
76
- , criterion
76
+ , bytestring >= 0.10 && < 1
77
+ , criterion >= 1.5 && < 2
77
78
, json-validator
78
- , parallel
79
- , text
79
+ , parallel >= 3.2 && < 4
80
+ , text >= 1.2 && < 3
80
81
default-language : Haskell2010
Original file line number Diff line number Diff line change @@ -17,29 +17,28 @@ tested-with: GHC ==8.10.7 || ==9.4.8 || ==9.8.2 || ==9.10.1 || ==9.12.1
17
17
18
18
dependencies :
19
19
- base >= 4.7 && < 5
20
+ - bytestring >= 0.10 && < 1
20
21
21
22
library :
22
23
source-dirs : src
23
24
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
30
30
31
31
executables :
32
32
json-validator-exe :
33
33
source-dirs : app
34
34
main : Main.hs
35
35
ghc-options : -threaded -rtsopts -with-rtsopts=-N
36
36
dependencies :
37
- - bytestring
38
- - text
39
37
- 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
43
42
44
43
dump-state-machine :
45
44
source-dirs : dump-state-machine
@@ -54,4 +53,3 @@ executables:
54
53
ghc-options : -threaded -rtsopts -with-rtsopts=-N
55
54
dependencies :
56
55
- json-validator
57
- - bytestring
You can’t perform that action at this time.
0 commit comments