-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (34 loc) · 915 Bytes
/
Cargo.toml
File metadata and controls
41 lines (34 loc) · 915 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
[workspace]
resolver = "2"
members = [
"core",
"zkvm/guest",
"zkvm/host",
]
exclude = [
"examples/simple-call",
"examples/erc20-transfer",
"examples/uniswap-swap",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "GPL-3.0"
repository = "https://github.com/zacksfF/Rust-ZK-Shadow-EVM"
[workspace.dependencies]
# Core EVM
# Note: std feature is disabled by default for ZK compatibility
revm = { version = "19.0", default-features = false, features = ["serde"] }
# Hashing & Crypto
alloy-primitives = { version = "0.8", default-features = false, features = ["serde"] }
sha3 = { version = "0.10", default-features = false }
# Serialization (ZK-friendly)
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] }
bincode = { version = "1.3" }
# Error handling
thiserror = "2.0"
# Testing
hex = "0.4"
[profile.release]
opt-level = 3
lto = true