forked from wasmerio/wasmer
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
364 lines (318 loc) · 9.56 KB
/
Cargo.toml
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
[package]
name = "wasmer-workspace"
description = "Wasmer workspace"
publish = false
autoexamples = false
authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true
[dependencies]
hc-wasmer = { version = "=4.3.6-hc.1", path = "lib/api", default-features = false }
hc-wasmer-compiler = { version = "=4.3.6-hc.1", path = "lib/compiler", features = [
"compiler",
], optional = true }
hc-wasmer-compiler-cranelift = { version = "=4.3.6-hc.1", path = "lib/compiler-cranelift", optional = true }
hc-wasmer-compiler-singlepass = { version = "=4.3.6-hc.1", path = "lib/compiler-singlepass", optional = true }
hc-wasmer-compiler-llvm = { version = "=4.3.6-hc.1", path = "lib/compiler-llvm", optional = true }
#hc-wasmer-emscripten = { version = "=4.3.6", path = "lib/emscripten", optional = true }
#hc-wasmer-wasix = { path = "lib/wasix", optional = true }
#hc-wasmer-wast = { version = "=4.3.6", path = "tests/lib/wast", optional = true }
#hc-wasi-test-generator = { version = "=4.3.6", path = "tests/wasi-wast", optional = true }
hc-wasmer-cache = { version = "=4.3.6-hc.1", path = "lib/cache", optional = true }
hc-wasmer-types = { version = "=4.3.6-hc.1", path = "lib/types" }
hc-wasmer-middlewares = { version = "=4.3.6-hc.1", path = "lib/middlewares", optional = true }
# Third party dependencies
cfg-if = "1.0"
tokio = { version = "1", features = [
"rt",
"rt-multi-thread",
"macros",
], optional = true }
crossbeam-queue = "0.3.8"
[workspace]
members = [
# "fuzz",
"lib/api",
# "lib/api/macro-wasmer-universal-test",
# "lib/backend-api",
# "lib/c-api",
# "lib/c-api/examples/wasmer-capi-examples-runner",
# "lib/c-api/tests/wasmer-c-api-test-runner",
"lib/cache",
# "lib/cli-compiler",
# "lib/cli",
"lib/compiler-cranelift",
"lib/compiler-llvm",
"lib/compiler-singlepass",
"lib/compiler",
# "lib/config",
"lib/derive",
# "lib/emscripten",
"lib/object",
# "lib/registry",
# "lib/sys-utils",
"lib/types",
# "lib/virtual-io",
# "lib/virtual-fs",
# "lib/virtual-net",
"lib/vm",
# "lib/wai-bindgen-wasmer",
# "lib/wasi-types",
# "lib/wasix",
# "lib/wasm-interface",
# "lib/journal",
# "lib/swift",
# "tests/integration/cli",
# "tests/integration/ios",
# "tests/lib/compiler-test-derive",
# "tests/lib/wast",
# "tests/wasi-wast",
# "tests/wasmer-argus",
]
resolver = "2"
[workspace.package]
authors = ["Wasmer Engineering Team <[email protected]>"]
edition = "2021"
homepage = "https://wasmer.io/"
license = "MIT"
repository = "https://github.com/wasmerio/wasmer"
rust-version = "1.74"
version = "4.3.6-hc.1"
[workspace.dependencies]
# Repo-local crates
wasmer-config = { path = "./lib/config" }
#wasmer-wasix = { path = "./lib/wasix" }
# Wasmer-owned crates
webc = { version = "6.0.0-rc1", default-features = false, features = ["package"] }
edge-schema = { version = "=0.1.0" }
shared-buffer = "0.1.4"
# Third-party crates
dashmap = "6.0.1"
http = "1.0.0"
hyper = "1"
reqwest = { version = "0.12.0", default-features = false }
enumset = "1.1.0"
memoffset = "0.9.0"
wasmparser = { version = "0.121.0", default-features = false }
rkyv = { version = "0.7.40", features = ["indexmap", "validation", "strict"] }
memmap2 = { version = "0.6.2" }
toml = { version = "0.5.9", features = ["preserve_order"] }
indexmap = "2"
serde_yaml = "0.9.34"
libc = { version = "^0.2", default-features = false }
[build-dependencies]
test-generator = { path = "tests/lib/test-generator" }
build-deps = "0.1.4"
anyhow = "1.0"
glob = "0.3"
rustc_version = "0.4"
[dev-dependencies]
hc-wasmer = { version = "=4.3.6-hc.1", path = "lib/api", features = [
"compiler",
"singlepass",
"sys",
] }
anyhow = "1.0"
criterion = { version = "0.5", default-features = false }
clap = { version = "=4.4.11" }
clap_builder = { version = "=4.4.11" }
clap_derive = { version = "=4.4.7" }
clap_lex = { version = "=0.6.0" }
lazy_static = "1.4"
serial_test = { version = "2.0", default-features = false }
compiler-test-derive = { path = "tests/lib/compiler-test-derive" }
tempfile = "3.6.0"
ureq = "2.6"
# For logging tests using the `RUST_LOG=debug` when testing
test-log = { version = "0.2", default-features = false, features = ["trace"] }
tracing = { version = "0.1", default-features = false, features = ["log"] }
tracing-subscriber = { version = "0.3", default-features = false, features = [
"env-filter",
"fmt",
] }
[features]
# Don't add the compiler features in default, please add them on the Makefile
# since we might want to autoconfigure them depending on the availability on the host.
default = [
"wat",
# "wast",
"cache",
# "wasi",
"engine",
# "emscripten",
"middlewares",
]
# backend means that the `wasmer` crate will be compiled with the `wasmer-compiler` or the `jsc`.
# That means: that is able to execute modules
backend = []
jsc = ["hc-wasmer/jsc", "backend", "wat", "hc-wasmer/std"]
wamr = ["hc-wasmer/wamr"]
engine = ["universal"]
universal = []
cache = ["hc-wasmer-cache"]
#wast = ["hc-wasmer-wast"]
#wasi = ["hc-wasmer-wasix"]
#emscripten = ["hc-wasmer-emscripten"]
wat = ["hc-wasmer/wat"]
compiler = ["hc-wasmer/compiler", "backend", "hc-wasmer-compiler/translator"]
singlepass = ["compiler", "hc-wasmer-compiler-singlepass", "hc-wasmer/singlepass"]
cranelift = ["compiler", "hc-wasmer-compiler-cranelift", "hc-wasmer/cranelift"]
llvm = ["compiler", "hc-wasmer-compiler-llvm", "hc-wasmer/llvm"]
middlewares = ["hc-wasmer-middlewares"]
hc-wasmer-artifact-load = ["hc-wasmer-compiler/wasmer-artifact-load"]
hc-wasmer-artifact-create = ["hc-wasmer-compiler/wasmer-artifact-create"]
static-artifact-load = ["hc-wasmer-compiler/static-artifact-load"]
static-artifact-create = ["hc-wasmer-compiler/static-artifact-create"]
# Testing features
test-singlepass = ["singlepass"]
test-cranelift = ["cranelift"]
test-llvm = ["llvm"]
test-universal = ["test-generator/test-universal"]
# Specifies that we're running in coverage testing mode. This disables tests
# that raise signals because that interferes with tarpaulin.
coverage = []
#[profile.release]
#debug = true
# Enable optimizations for a few crates, even for debug builds.
# This greatly speeds up using debug builds, because these crates are extremely
# slow without optimizations.
[profile.dev.package.cranelift-codegen]
opt-level = 3
[profile.dev.package.regalloc2]
opt-level = 3
[profile.dev.package.wasmparser]
opt-level = 3
[profile.dev.package.rkyv]
opt-level = 3
[profile.dev.package.hc-wasmer-types]
opt-level = 3
[profile.dev.package.weezl]
opt-level = 3
[profile.dev.package.sha2]
opt-level = 3
[profile.dev.package.xxhash-rust]
opt-level = 3
[profile.dev.package.digest]
opt-level = 3
[[bench]]
name = "static_and_dynamic_functions"
harness = false
[[bench]]
name = "import_functions"
harness = false
[[example]]
name = "early-exit"
path = "examples/early_exit.rs"
required-features = ["backend"]
[[example]]
name = "engine"
path = "examples/engine.rs"
required-features = ["cranelift"]
[[example]]
name = "engine-headless"
path = "examples/engine_headless.rs"
required-features = ["cranelift"]
[[example]]
name = "platform-headless-ios"
path = "examples/platform_ios_headless.rs"
required-features = ["cranelift"]
[[example]]
name = "cross-compilation"
path = "examples/engine_cross_compilation.rs"
required-features = ["cranelift"]
[[example]]
name = "compiler-singlepass"
path = "examples/compiler_singlepass.rs"
required-features = ["singlepass"]
[[example]]
name = "compiler-cranelift"
path = "examples/compiler_cranelift.rs"
required-features = ["cranelift"]
[[example]]
name = "compiler-llvm"
path = "examples/compiler_llvm.rs"
required-features = ["llvm"]
[[example]]
name = "exported-function"
path = "examples/exports_function.rs"
required-features = ["backend"]
[[example]]
name = "exported-global"
path = "examples/exports_global.rs"
required-features = ["backend"]
[[example]]
name = "exported-memory"
path = "examples/exports_memory.rs"
required-features = ["backend"]
[[example]]
name = "imported-function"
path = "examples/imports_function.rs"
required-features = ["backend"]
[[example]]
name = "imported-global"
path = "examples/imports_global.rs"
required-features = ["backend"]
[[example]]
name = "tunables-limit-memory"
path = "examples/tunables_limit_memory.rs"
required-features = ["cranelift"]
[[example]]
name = "wasi"
path = "examples/wasi.rs"
required-features = ["wasi"]
[[example]]
name = "wasi-manual-setup"
path = "examples/wasi_manual_setup.rs"
required-features = ["tokio", "backend", "wasi"]
[[example]]
name = "wasi-pipes"
path = "examples/wasi_pipes.rs"
required-features = ["tokio", "backend", "wasi"]
[[example]]
name = "table"
path = "examples/table.rs"
required-features = ["backend"]
[[example]]
name = "memory"
path = "examples/memory.rs"
required-features = ["backend"]
[[example]]
name = "instance"
path = "examples/instance.rs"
required-features = ["backend"]
[[example]]
name = "errors"
path = "examples/errors.rs"
required-features = ["backend"]
[[example]]
name = "imported-function-env"
path = "examples/imports_function_env.rs"
required-features = ["backend"]
[[example]]
name = "imported-function-env-global"
path = "examples/imports_function_env_global.rs"
required-features = ["backend"]
[[example]]
name = "hello-world"
path = "examples/hello_world.rs"
required-features = ["backend"]
[[example]]
name = "metering"
path = "examples/metering.rs"
required-features = ["cranelift"]
[[example]]
name = "imports-exports"
path = "examples/imports_exports.rs"
required-features = ["backend"]
[[example]]
name = "features"
path = "examples/features.rs"
required-features = ["cranelift"]
[[example]]
name = "http-dynamic-size"
path = "examples/http_dynamic_size.rs"
required-features = ["cranelift"]