-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
37 lines (33 loc) · 1.1 KB
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
[workspace]
members = [
"components/debug",
"components/recorder"
, "crates/dialog", "crates/trace"]
[workspace.dependencies]
wit-bindgen = { version = "0.52.0", default-features = false, features = ["bitflags", "std", "macros"] }
serde = { version = "1.0.226", features = ["derive"] }
serde_json = "1.0.145"
wasm-wave = { git = "https://github.com/chenyan2002/wasm-tools.git", branch = "extend-wave", version = "0.239.0", default-features = false }
[package]
name = "proxy-component"
version = "0.1.0"
edition = "2024"
[dependencies]
trace = { path = "crates/trace" }
anyhow = "1.0.98"
clap = { version = "4.5.40", features = ["derive"] }
heck = "0.5.0"
prettyplease = "0.2.37"
quote = "1.0.41"
proc-macro2 = "1.0.103"
syn = { version = "2.0.108", features = ["visit-mut"] }
tempfile = "3.20.0"
wit-bindgen-core = "0.53.1"
wit-component = "0.245.0"
wasmtime = { version = "42.0.0", features = ["wave"], optional = true }
wasmtime-wasi = { version = "42.0.0", optional = true }
dialog = { path = "crates/dialog", optional = true }
ctrlc = "3.5.2"
[features]
run = ["wasmtime", "wasmtime-wasi", "dialog"]
default = ["run"]