-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (42 loc) · 988 Bytes
/
Cargo.toml
File metadata and controls
45 lines (42 loc) · 988 Bytes
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
44
45
[workspace]
members = [
"crates/cli",
"crates/codegen",
"crates/javy",
"crates/plugin",
"crates/plugin-api",
"crates/plugin-processing",
"crates/test-invalid-plugin",
"crates/test-macros",
"crates/test-plugin-wasip1",
"crates/test-plugin-wasip2",
"crates/runner",
"fuzz",
"release",
]
resolver = "2"
[workspace.package]
version = "8.1.1"
authors = ["The Javy Project Developers"]
edition = "2024"
license = "Apache-2.0 WITH LLVM-exception"
[workspace.dependencies]
brotli = "8.0.2"
clap = { version = "4.5.60", features = ["derive"] }
deterministic-wasi-ctx = "=4.0.1"
wasmtime = "43"
wasmtime-wasi = "43"
wasmtime-wizer = "43"
wasm-opt = "0.116.1"
anyhow = "1.0"
javy = { path = "crates/javy", version = "7.0.1-alpha.1" }
tempfile = "3.27.0"
tokio = "1"
uuid = { version = "1.23", features = ["v4"] }
serde = { version = "1.0", default-features = false }
serde_json = "1.0"
walrus = "0.24.5"
wasmparser = "0.244.0"
[profile.release]
lto = true
opt-level = 3