-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathCargo.toml
62 lines (54 loc) · 2.36 KB
/
Cargo.toml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[workspace]
resolver = "2"
members = ["crates/*", "crates/aggregation/guest", "crates/ffi/guests"]
[workspace.package]
version = "1.4.0-alpha.1"
edition = "2021"
license = "Apache-2.0"
homepage = "https://risczero.com/"
repository = "https://github.com/risc0/risc0-ethereum/"
[workspace.dependencies]
# Intra-workspace dependencies
risc0-aggregation = { version = "0.3.0-alpha.1", default-features = false, path = "crates/aggregation" }
risc0-build-ethereum = { version = "1.4.0-alpha.1", default-features = false, path = "build" }
risc0-ethereum-contracts = { version = "1.4.0-alpha.1", default-features = false, path = "contracts" }
risc0-forge-ffi = { version = "1.4.0-alpha.1", default-features = false, path = "crates/ffi" }
risc0-steel = { version = "1.4.0-alpha.1", default-features = false, path = "crates/steel" }
risc0-op-steel = { version = "0.2.0-alpha.1", default-features = false, path = "crates/op-steel" }
# risc0 monorepo dependencies.
risc0-build = { git = "https://github.com/risc0/risc0", branch = "main", default-features = false }
risc0-zkp = { git = "https://github.com/risc0/risc0", branch = "main", default-features = false }
risc0-zkvm = { git = "https://github.com/risc0/risc0", branch = "main", default-features = false }
risc0-binfmt = { git = "https://github.com/risc0/risc0", branch = "main", default-features = false }
# Alloy guest dependencies
alloy-consensus = { version = "0.9" }
alloy-rlp = { version = "0.3.8" }
alloy-primitives = { version = "0.8.16" }
alloy-sol-types = { version = "0.8.16" }
# OP Steel
op-alloy-network = { version = "0.9" }
# Alloy host dependencies
alloy = { version = "0.9" }
alloy-trie = { version = "0.7.7" }
# Beacon chain support
ethereum-consensus = { git = "https://github.com/ralexstokes/ethereum-consensus.git", rev = "cf3c404043230559660810bc0c9d6d5a8498d819" }
hex = "0.4"
anyhow = { version = "1.0" }
bincode = { version = "1.3" }
clap = { version = "4.5", features = ["derive", "env"] }
log = "0.4"
revm = { version = "19.2", default-features = false, features = ["std"] }
reqwest = "0.12"
serde = "1.0"
serde_json = "1.0"
sha2 = { version = "0.10" }
stability = "0.2"
test-log = "0.2.15"
thiserror = { version = "2.0", default-features = false }
tokio = { version = "1.35" }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = { version = "2.5" }
rand = "0.8"
cfg-if = "1.0"
bytemuck = "1.21"