-
Notifications
You must be signed in to change notification settings - Fork 0
/
wasmtime-hs.cabal
177 lines (144 loc) · 4.97 KB
/
wasmtime-hs.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
cabal-version: 3.0
name: wasmtime-hs
version: 0.0.0.0
synopsis: Haskell bindings to the wasmtime WASM engine
homepage: https://github.com/dfinity/wasmtime-hs
license: BSD-2-Clause
license-file: LICENSE
author: Testing & Verification team at DFINITY
maintainer: dept-testing_&_verification@dfinity.org
copyright: DFINITY
category: System
build-type: Simple
extra-doc-files: CHANGELOG.md
data-files: test/*.wat
extra-doc-files: *.png
description:
High-level Haskell API to wasmtime via its C API.
<<wasmtime-hs.png wasmtime-hs logo>>
common warnings
ghc-options: -Wall
library
import: warnings
exposed-modules: Wasmtime
other-modules: Bindings.Wasi
other-modules: Bindings.Wasm
other-modules: Bindings.Wasmtime
other-modules: Bindings.Wasmtime.Config
other-modules: Bindings.Wasmtime.Engine
other-modules: Bindings.Wasmtime.Error
other-modules: Bindings.Wasmtime.Extern
other-modules: Bindings.Wasmtime.Func
other-modules: Bindings.Wasmtime.Instance
other-modules: Bindings.Wasmtime.Linker
other-modules: Bindings.Wasmtime.Module
other-modules: Bindings.Wasmtime.Store
other-modules: Bindings.Wasmtime.Trap
other-modules: Bindings.Wasmtime.Val
other-modules: Bindings.Wasmtime.Memory
other-modules: Bindings.Wasmtime.Table
other-modules: Bindings.Wasmtime.Global
build-depends: base >=4.15 && < 5
build-depends: bindings-DSL >= 1.0.25 && < 2
build-depends: bytestring >= 0.11.4 && < 1
build-depends: primitive >= 0.7.3 && < 0.9
build-depends: transformers >= 0.5.6 && < 0.7
build-depends: vector >= 0.12.3 && < 0.14
build-depends: wide-word >= 0.1.5 && < 0.2
default-language: Haskell2010
hs-source-dirs: lib
extra-libraries: wasmtime
test-suite inc-st
import: warnings
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: inc-st.hs
other-modules: Paths_wasmtime_hs
build-depends: base >=4.15
build-depends: bytestring
build-depends: primitive
build-depends: transformers
build-depends: wasmtime-hs
build-depends: tasty-hunit >= 0.10.0
test-suite hello
import: warnings
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: hello.hs
other-modules: Paths_wasmtime_hs
build-depends: base >=4.15
build-depends: bytestring
build-depends: primitive
build-depends: wasmtime-hs
test-suite gcd
import: warnings
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: gcd.hs
other-modules: Paths_wasmtime_hs
build-depends: base >=4.15
build-depends: bytestring
build-depends: primitive
build-depends: wasmtime-hs
test-suite memory
import: warnings
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: memory.hs
other-modules: Paths_wasmtime_hs
build-depends: base >=4.15
build-depends: bytestring
build-depends: primitive
build-depends: wasmtime-hs
build-depends: tasty-hunit >= 0.10.0
test-suite fuel
import: warnings
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: fuel.hs
other-modules: Paths_wasmtime_hs
build-depends: base >=4.15
build-depends: bytestring
build-depends: primitive
build-depends: wasmtime-hs
build-depends: tasty-hunit >= 0.10.0
test-suite memtest
import: warnings
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: memtest.hs
other-modules: Paths_wasmtime_hs
build-depends: base >=4.15
build-depends: bytestring
build-depends: primitive
build-depends: wasmtime-hs
build-depends: tasty-hunit >= 0.10.0
test-suite linker-hello
import: warnings
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: linker-hello.hs
other-modules: Paths_wasmtime_hs
build-depends: base >=4.15
build-depends: bytestring
build-depends: primitive
build-depends: wasmtime-hs
executable err
import: warnings
type: exitcode-stdio-1.0
ghc-options: -O0
default-language: Haskell2010
hs-source-dirs: test
main-is: err.hs
other-modules: Paths_wasmtime_hs
build-depends: base >=4.15
build-depends: bytestring
build-depends: primitive
build-depends: wasmtime-hs