-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
16 lines (14 loc) · 717 Bytes
/
Cargo.toml
File metadata and controls
16 lines (14 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[workspace]
members = ["programs", "core", "acl", "evm", "runtime", "examples/*"]
exclude = ["templates/*", "examples/risczero-zkvm-verification"]
resolver = "2"
[workspace.dependencies]
entropy-programs = { path = "programs", default-features = false }
entropy-programs-core = { path = "core", default-features = false }
entropy-programs-acl = { path = "acl", default-features = false }
entropy-programs-evm = { path = "evm", default-features = false }
entropy-programs-runtime = { path = "runtime", default-features = false }
wit-bindgen = { version = "0.7.0", default_features = false }
# strip debug info since that makes up a major part of Wasm blobs, see Wasm's `twiggy`
[profile.release]
strip = "debuginfo"