forked from bytecodealliance/jco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (37 loc) · 1.33 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 = "1.0.71"
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.1.0"
[workspace.dependencies]
anyhow = "1.0.71"
base64 = "0.21.2"
heck = { version = "0.4", features = ["unicode"] }
indexmap = "1.9"
wasm-encoder = "0.29.0"
wasm-metadata = "0.8.0"
wasmparser = "0.107.0"
wasmprinter = "0.2.59"
wasmtime = { git = "https://github.com/bytecodealliance/wasmtime", features = ["component-model"], rev = "f7ae056a0a757492c0842ca3f2852f9a5f4bd19c" }
wasmtime-environ = { git = "https://github.com/bytecodealliance/wasmtime", rev = "f7ae056a0a757492c0842ca3f2852f9a5f4bd19c" }
wat = "1.0.66"
wit-bindgen = { git = "https://github.com/bytecodealliance/wit-bindgen", rev = "e69cf5db8754f829637e25491c560ec0d9728852" }
wit-component = { version = "0.11.0", features = ['dummy-module'] }
wit-parser = "0.8.0"