-
Notifications
You must be signed in to change notification settings - Fork 63
/
Cargo.toml
60 lines (54 loc) · 1.15 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
[package]
name = "jco"
version = { workspace = true }
edition = { workspace = true }
publish = false
[[bin]]
name = "dummy"
path = "bin/dummy.rs"
[workspace]
members = [
"crates/js-component-bindgen",
"crates/js-component-bindgen-component",
"crates/wasm-tools-component",
"xtask",
]
resolver = "2"
[workspace.package]
edition = "2021"
version = "1.7.2"
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = 'z'
overflow-checks = false
panic = 'abort'
rpath = false
strip = true
[workspace.dependencies]
anyhow = "1.0.91"
base64 = "0.22.1"
heck = "0.5.0"
log = "0.4.22"
semver = "1.0.23"
js-component-bindgen = { path = "./crates/js-component-bindgen" }
structopt = "0.3.26"
wasm-encoder = "0.218.0"
wasm-metadata = "0.218.0"
wasmparser = "0.218.0"
wasmprinter = "0.218.0"
wasmtime-environ = { version = "26.0.0", features = [
"component-model",
"compile",
] }
wat = "1.218.0"
wit-bindgen = "0.33.0"
wit-bindgen-core = "0.33.0"
wit-component = { version = "0.218.0", features = ["dummy-module"] }
wit-parser = "0.218.0"
xshell = "0.2.6"
[dev-dependencies]
anyhow = { workspace = true }