forked from bytecodealliance/jco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (37 loc) · 1.11 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
[package]
name = "jco"
version.workspace = true
edition.workspace = true
publish = false
[[bin]]
name = "self-build"
path = "bin/self_build.rs"
[dependencies]
anyhow = { workspace = true }
js-component-bindgen = { path = "./crates/js-component-bindgen" }
wit-component = { workspace = true }
[build-dependencies]
anyhow = { workspace = true }
js-component-bindgen = { path = "./crates/js-component-bindgen" }
wit-component = { workspace = true }
[workspace]
members = ["crates/js-component-bindgen", "crates/js-component-bindgen-component", "crates/wasm-tools-component"]
resolver = "2"
[workspace.package]
edition = "2021"
version = "0.11.0"
[workspace.dependencies]
anyhow = "1.0.75"
base64 = "0.21.4"
heck = { version = "0.4", features = ["unicode"] }
indexmap = "2.0"
wasm-encoder = "0.33.1"
wasm-metadata = "0.10.5"
wasmparser = "0.113.1"
wasmprinter = "0.2.66"
wasmtime-environ = { git = "https://github.com/bytecodealliance/wasmtime", features = ["component-model"] }
wat = "1.0.73"
wit-bindgen = "0.12.0"
wit-bindgen-core = "0.12.0"
wit-component = { version = "0.14.2", features = ["dummy-module"] }
wit-parser = "0.11.1"