forked from succinctlabs/op-succinct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
135 lines (122 loc) · 5.44 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
[workspace]
members = [
"utils/*",
"programs/*",
"scripts/*",
"validity",
"fault-proof",
]
resolver = "2"
[workspace.package]
license = "MIT"
edition = "2021"
authors = ["ratankaliani", "zachobront", "fakedev9999"]
homepage = "https://succinctlabs.github.io/op-succinct/"
repository = "https://github.com/succinctlabs/op-succinct"
[workspace.dependencies]
# general
anyhow = { version = "1.0.86", default-features = false }
thiserror = { version = "2.0.3" }
cfg-if = "1.0.0"
spin = { version = "0.9.8" }
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 = { version = "0.8", features = ["hashbrown-0_15", "std"] }
hex = "0.4.3"
bincode = "1.3.3"
base64 = "0.22.1"
tower-http = { version = "0.5.2", features = ["limit"] }
tracing = { version = "0.1.40", default-features = false }
tracing-subscriber = { version = "0.3.18", features = ["fmt"] }
# kona
# TODO: Use tag once new kona release is made
kona-mpt = { git = "https://github.com/op-rs/kona", rev = "4800d79" }
kona-derive = { git = "https://github.com/op-rs/kona", rev = "4800d79", default-features = false }
kona-driver = { git = "https://github.com/op-rs/kona", rev = "4800d79" }
kona-preimage = { git = "https://github.com/op-rs/kona", rev = "4800d79", features = [
"rkyv",
"serde",
] }
kona-executor = { git = "https://github.com/op-rs/kona", rev = "4800d79" }
kona-proof = { git = "https://github.com/op-rs/kona", rev = "4800d79" }
kona-client = { git = "https://github.com/op-rs/kona", rev = "4800d79" }
kona-host = { git = "https://github.com/op-rs/kona", rev = "4800d79" }
kona-providers-alloy = { git = "https://github.com/op-rs/kona", rev = "4800d79" }
kona-rpc = { git = "https://github.com/op-rs/kona", rev = "4800d79", default-features = false, features = [
"serde",
] }
kona-protocol = { git = "https://github.com/op-rs/kona", rev = "4800d79", default-features = false }
kona-registry = { git = "https://github.com/op-rs/kona", rev = "4800d79", default-features = false }
kona-genesis = { git = "https://github.com/op-rs/kona", rev = "4800d79", default-features = false }
# op-succinct
op-succinct-prove = { path = "scripts/prove" }
op-succinct-client-utils = { path = "utils/client" }
op-succinct-host-utils = { path = "utils/host" }
op-succinct-build-utils = { path = "utils/build" }
op-succinct-validity = { path = "validity" }
op-succinct-fp = { path = "fault-proof" }
# Alloy (Network)
alloy-signer-local = { version = "0.11.1" }
alloy-provider = { version = "0.11.1" }
alloy-transport = { version = "0.11.1" }
alloy-transport-http = { version = "0.11.1" }
alloy-contract = { version = "0.11.1" }
alloy-network = { version = "0.11.1" }
# Alloy
alloy-rlp = { version = "0.3.10", default-features = false }
alloy-trie = { version = "0.7.9", default-features = false }
alloy-eips = { version = "0.11.1", default-features = false }
alloy-serde = { version = "0.11.1", default-features = false }
alloy-consensus = { version = "0.11.1", default-features = false }
alloy-rpc-types = { version = "0.11.1", default-features = false }
alloy-rpc-client = { version = "0.11.1", default-features = false }
alloy-node-bindings = { version = "0.11.1", default-features = false }
alloy-rpc-types-engine = { version = "0.11.1", default-features = false }
alloy-rpc-types-beacon = { version = "0.11.1", default-features = false }
alloy-rpc-types-eth = { version = "0.11.1", default-features = false }
# Keccak with the SHA3 patch is more efficient than the default Keccak.
alloy-primitives = { version = "0.8.21", default-features = false, features = [
"sha3-keccak",
] }
alloy-sol-types = { version = "0.8.21", default-features = false }
alloy-sol-macro = { version = "0.8.21", default-features = false }
# OP Alloy
op-alloy-consensus = { version = "0.10.7", default-features = false }
op-alloy-rpc-types = { version = "0.10.7", default-features = false }
op-alloy-rpc-types-engine = { version = "0.10.7", default-features = false }
op-alloy-network = { version = "0.10.7", default-features = false }
# Revm
revm = { version = "19.5.0", default-features = false, features = ["kzg-rs"] }
# SP1
# TODO: Switch to the latest SP1 release once it's published.
sp1-sdk = { git = "https://github.com/succinctlabs/sp1", rev = "9f202bf" }
sp1-lib = { version = "4.1.0", features = ["verify"] }
sp1-zkvm = { version = "4.1.0", features = ["verify"] }
sp1-build = { version = "4.1.0" }
kzg-rs = { version = "0.2.5" }
[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 = "patch-2.0.2-sp1-4.0.0" }
sha2 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", tag = "patch-sha2-0.10.8-sp1-4.0.0" }
substrate-bn = { git = "https://github.com/sp1-patches/bn", tag = "patch-0.6.0-sp1-4.0.0" }
sha3 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha3", tag = "patch-sha3-0.10.8-sp1-4.0.0" }
p256 = { git = "https://github.com/sp1-patches/elliptic-curves", tag = "patch-p256-13.2-sp1-4.1.0" }
k256 = { git = "https://github.com/sp1-patches/elliptic-curves", tag = "patch-k256-13.4-sp1-4.1.0" }