-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 1.14 KB
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 1.14 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
[workspace]
members = [ "crates/splicer-component","crates/spidermonkey-embedding-splicer"]
exclude = ["StarlingMonkey/crates/rust-url"]
resolver = "2"
[workspace.package]
edition = "2021"
version = "0.1.0"
[workspace.lints.clippy]
too_many_arguments = 'allow'
[workspace.dependencies]
anyhow = { version = "1.0.95", default-features = false }
heck = { version = "0.5", default-features = false }
js-component-bindgen = { version = "1.11.0" }
wirm = { version = "2.1.0", default-features = false }
rand = { version = "0.8", default-features = false }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
wasm-encoder = { version = "0.227.1", features = [ "component-model", "std" ] }
wasmparser = { version = "0.239.0", features = ["features",
"component-model",
"hash-collections",
"serde",
"simd" ,
"std",
"validate",
] }
wit-bindgen = { version = "0.41.0", features = [ "macros", "async", "realloc" ] }
wit-bindgen-core = { version = "0.41.0", default-features = false }
wit-component = { version = "0.227.1", features = ["dummy-module"] }
wit-parser = { version = "0.227.1", features = [ "decoding", "serde"] }