-
Notifications
You must be signed in to change notification settings - Fork 25
/
Cargo.toml
104 lines (94 loc) · 4.29 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[workspace]
members = ["utils/*", "programs/*", "scripts/*", "proposer/succinct"]
resolver = "2"
[workspace.package]
license = "MIT"
edition = "2021"
authors = ["ratankaliani", "zachobront"]
homepage = "https://succinctlabs.github.io/op-succinct/"
repository = "https://github.com/succinctlabs/op-succinct"
[workspace.dependencies]
anyhow = { version = "1.0.86", default-features = false }
cfg-if = "1.0.0"
spin = { version = "0.9.8", features = ["mutex"] }
lru = "0.12.3"
async-trait = "0.1.80"
sha2 = "0.10.8"
tokio = { version = "1.40.0", features = ["full"] }
clap = "4.5.9"
cargo_metadata = "0.18.1"
dotenv = "0.15.0"
num-format = "0.4.4"
futures = "0.3.30"
serde_cbor = "0.11.2"
log = "0.4.22"
itertools = "0.13.0"
reqwest = { version = "0.12", features = ["json"] }
csv = "1.3.0"
serde = { version = "1.0.198", features = ["derive"] }
serde_json = { version = "1.0.117", default-features = false }
rkyv = "0.7.44"
hex = "0.4.3"
bincode = "1.3.3"
base64 = "0.22.1"
tower-http = { version = "0.5.2", features = ["limit"] }
kzg-rs = { version = "0.2.2" }
# program tracing
tracing = { version = "0.1.40", default-features = false }
tracing-subscriber = { version = "0.3.18", features = ["fmt"] }
# kona
# Note: Switch to latest version of kona once the std::process::Command issue is resolved.
kona-common = { git = "https://github.com/moongate-forks/kona", branch = "patch-10-17-kona" }
kona-common-proc = { git = "https://github.com/moongate-forks/kona", branch = "patch-10-17-kona" }
kona-preimage = { git = "https://github.com/moongate-forks/kona", branch = "patch-10-17-kona", features = [
"rkyv",
] }
kona-primitives = { git = "https://github.com/moongate-forks/kona", branch = "patch-10-17-kona" }
kona-mpt = { git = "https://github.com/moongate-forks/kona", branch = "patch-10-17-kona" }
kona-derive = { git = "https://github.com/moongate-forks/kona", branch = "patch-10-17-kona", default-features = false }
kona-executor = { git = "https://github.com/moongate-forks/kona", branch = "patch-10-17-kona" }
kona-client = { git = "https://github.com/moongate-forks/kona", branch = "patch-10-17-kona" }
kona-host = { git = "https://github.com/moongate-forks/kona", branch = "patch-10-17-kona" }
# op-succinct
op-succinct-prove = { path = "scripts/prove" }
op-succinct-witnessgen = { path = "scripts/witnessgen" }
op-succinct-client-utils = { path = "utils/client" }
op-succinct-host-utils = { path = "utils/host" }
op-succinct-build-utils = { path = "utils/build" }
op-succinct-proposer = { path = "proposer/succinct" }
# Alloy
alloy = { version = "0.4.2", default-features = false, features = ["full"] }
# Uses sha3 instead of tiny-keccak. Reduces cycle count for Keccak by 50%.
alloy-primitives = { version = "0.8.4", default-features = false, features = [
"sha3-keccak",
] }
alloy-rlp = { version = "0.3.8", default-features = false }
alloy-eips = { version = "0.4.2", default-features = false }
revm = { version = "14.0", default-features = false, features = ["kzg-rs"] }
alloy-consensus = { version = "0.4.2", default-features = false }
alloy-sol-types = { version = "0.8" }
# OP Alloy
op-alloy-consensus = { version = "0.4.0", default-features = false }
op-alloy-genesis = { version = "0.4.0", default-features = false, features = [
"serde",
] }
op-alloy-protocol = { version = "0.4.0", default-features = false }
op-alloy-rpc-types = { version = "0.4.0", default-features = false }
op-alloy-rpc-types-engine = { version = "0.4.0", default-features = false }
op-alloy-network = { version = "0.4.0", default-features = false }
# sp1
sp1-lib = { version = "3.0.0", features = ["verify"] }
sp1-zkvm = { version = "3.0.0", features = ["verify"] }
sp1-sdk = { version = "3.0.0" }
sp1-build = { version = "3.0.0" }
[profile.release-client-lto]
inherits = "release"
panic = "abort"
codegen-units = 1
lto = "fat"
[patch.crates-io]
tiny-keccak = { git = "https://github.com/sp1-patches/tiny-keccak", tag = "tiny_keccak-v2.0.2-patch-v1" }
sha2 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", tag = "sha2-v0.10.8-patch-v1" }
ecdsa = { git = "https://github.com/sp1-patches/signatures", tag = "ecdsa-v0.16.8-patch-v1" }
substrate-bn = { git = "https://github.com/sp1-patches/bn", tag = "substrate_bn-v0.6.0-patch-v1" }
sha3 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha3", tag = "sha3-v0.10.8-patch-v1" }