-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (30 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
37 lines (30 loc) · 1.13 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
[workspace]
members = ["crates/splicer-component", "crates/spidermonkey-embedding-splicer"]
exclude = ["StarlingMonkey/crates/rust-url"]
resolver = "2"
[workspace.package]
edition = "2024"
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 }
rand = { version = "0.8", default-features = false }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
wirm = { version = "5.0.0", default-features = false }
wasm-encoder = { version = "0.245.1", features = ["component-model", "std"] }
wasmparser = { version = "0.245.1", features = [
"features",
"component-model",
"hash-collections",
"serde",
"simd",
"std",
"validate",
] }
wit-component = { version = "0.245.1", features = ["dummy-module"] }
wit-parser = { version = "0.245.1", features = ["decoding", "serde"] }
wit-bindgen = { version = "0.54.0", features = ["macros", "async", "realloc"] }
wit-bindgen-core = { version = "0.54.0", default-features = false }
js-component-bindgen = { version = "1.19.0" }