1
+
1
2
cabal-version : 1.12
2
3
name : quickjs-hs
3
4
version : 0.1.2.4
@@ -20,15 +21,7 @@ description:
20
21
To get started, see the ReadMe below.
21
22
22
23
extra-source-files :
23
- quickjs/cutils.h
24
- , quickjs/libbf.h
25
- , quickjs/libunicode-table.h
26
- , quickjs/libunicode.h
27
- , quickjs/libregexp-opcode.h
28
- , quickjs/libregexp.h
29
- , quickjs/list.h
30
- , quickjs/quickjs-atom.h
31
- , quickjs/quickjs-opcode.h
24
+ quickjs/*.h
32
25
33
26
source-repository head
34
27
type : git
@@ -42,35 +35,36 @@ library
42
35
hs-source-dirs :
43
36
src
44
37
build-depends :
45
- base >= 4.11 && < 5
46
- , aeson >= 1.1 && < 1.6
47
- , bytestring >= 0.10 && < 0.11
48
- , containers >= 0.5 && < 0.7
49
- , exceptions >= 0.8 && < 0.11
50
- , inline-c >= 0.5 && < 0.10
51
- , mtl >= 2.2.2 && < 2.3
52
- , scientific >= 0.3.5 && < 0.4
53
- , string-conv >= 0.1.2 && < 0.2
54
- , text >= 1.2.0 && < 1.3
55
- , time >= 1.8 && < 1.10
56
- , transformers >= 0.5 && < 0.6
57
- , unliftio-core >= 0.1 && < 0.2.1
58
- , unordered-containers >= 0.2.8 && < 0.3
59
- , vector >= 0.12 && < 0.13
38
+ aeson >= 2.0 && < 2.2 ,
39
+ base >= 4.11 && < 5 ,
40
+ bytestring >= 0.10 && < 0.12 ,
41
+ containers >= 0.5 && < 0.7 ,
42
+ exceptions >= 0.8 && < 0.11 ,
43
+ inline-c >= 0.5 && < 0.10 ,
44
+ mtl >= 2.2.2 && < 2.4 ,
45
+ scientific >= 0.3.5 && < 0.4 ,
46
+ string-conv >= 0.1.2 && < 0.3 ,
47
+ text >= 1.2.0 && < 2.1 ,
48
+ time >= 1.8 && < 1.14 ,
49
+ transformers >= 0.5 && < 0.7 ,
50
+ unliftio-core >= 0.1 && < 0.3 ,
51
+ unordered-containers >= 0.2.8 && < 0.3 ,
52
+ vector >= 0.12 && < 0.14
53
+
60
54
default-language : Haskell2010
61
55
include-dirs : quickjs
62
- c-sources :
56
+ c-sources :
63
57
quickjs/cutils.c
64
58
, quickjs/libbf.c
65
59
, quickjs/libunicode.c
66
60
, quickjs/libregexp.c
67
- , quickjs/quickjs.h
68
61
, quickjs/quickjs.c
69
- , quickjs/quickjs-libc.h
70
62
, quickjs/quickjs-libc.c
71
-
72
- cc-options :
73
- -static -D_GNU_SOURCE
63
+ includes :
64
+ quickjs/quickjs.h
65
+ , quickjs/quickjs-libc.h
66
+ cc-options :
67
+ -static -D_GNU_SOURCE
74
68
-DCONFIG_VERSION="2020-11-08"
75
69
-DCONFIG_BIGNUM
76
70
@@ -86,12 +80,11 @@ test-suite quickjs-hs-test
86
80
, quickjs-hs -any
87
81
, aeson
88
82
, exceptions
89
- , HUnit >= 1.6.0.0 && < 1.7
90
- , QuickCheck >= 2.9 && < 2.15
91
- , tasty >= 1.0 && < 1.3
92
- , tasty-hunit >= 0.10 && < 0.11
93
- , tasty-quickcheck >= 0.9 && < 0.11
83
+ , HUnit >= 1.6.0.0
84
+ , QuickCheck >= 2.9
85
+ , tasty >= 1.0
86
+ , tasty-hunit >= 0.10
87
+ , tasty-quickcheck >= 0.9
94
88
, text
95
89
, unordered-containers
96
90
, vector
97
-
0 commit comments