-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (40 loc) · 883 Bytes
/
Cargo.toml
File metadata and controls
44 lines (40 loc) · 883 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
[workspace]
members = [
"execution",
"common",
"prover/program",
"prover/host",
"prover/share",
"consensus",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2024"
[workspace.dependencies]
axum = { version = "0.7", features = ["macros"] }
tokio = { version = "1.42.0", features = ["full"] }
anyhow = "1.0"
thiserror = "2.0.12"
eyre = "0.6.12"
lazy_static = "1.5.0"
rand = "0.9.0"
log = "0.4.26"
env_logger = "0.11.7"
tower-http = { version = "0.5", features = ["cors"] }
futures = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sled = "0.34.7"
# for prover
sp1-zkvm = "4.0.0"
sp1-sdk = "4.0.0"
tiny-keccak = { version = "2.0", features = ["sha3"] }
# for evm txn
revm = "27.0.3"
alloy-consensus = "0.14.0"
alloy-eips = "0.14.0"
alloy-primitives = "1.2.1"
alloy-trie = "0.9.0"
alloy-rlp = "0.3.12"
hex = "0.4"