-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
101 lines (91 loc) · 3.81 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
[workspace.package]
edition = "2021"
license = "MIT"
rust-version = "1.81"
authors = ["hashcashier"]
homepage = "https://github.com/risc0/kailua"
repository = "https://github.com/risc0/kailua"
keywords = ["risc0", "zk", "ethereum", "optimism", "crypto"]
categories = ["cryptography", "cryptography::cryptocurrencies"]
[workspace]
resolver = "2"
members = [
"bin/*",
"build/*",
"crates/*",
]
[workspace.dependencies]
anyhow = "1.0.86"
async-trait = "0.1.81"
bincode = "1.3.3"
bytemuck = "1.12"
bytes = "1.7.2"
clap = { version = "4.5.21", features = ["derive", "env"] }
c-kzg = "=1.0.3"
foundry-compilers = "0.11.0"
hashbrown = "0.15.0"
hex = "0.4.3"
lazy_static = "1.5.0"
lru = "0.12.4"
pot = "3.0.1"
rkyv = "0.8.9"
rocksdb = "0.22.0"
semver = "1.0.23"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.127"
sha2 = "0.10.8"
spin = { version = "0.9.8", features = ["mutex"] }
tempfile = "3.10.1"
tokio = { version = "1.39.1", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = "2.5.4"
# Alloy
alloy = { version = "0.8.1", default-features = false, features = ["json"] }
alloy-chains = "0.1.46"
alloy-consensus = { version = "0.8.1", default-features = false }
alloy-eips = { version = "0.8.1", default-features = false, features = ["kzg"] }
alloy-primitives = { version = "0.8", default-features = false }
alloy-rpc-types-beacon = "0.8.1"
op-alloy-genesis = { version = "0.8.4", default-features = false }
op-alloy-consensus = { version = "0.8.4", default-features = false }
op-alloy-protocol = { version = "0.8.4", default-features = false }
op-alloy-registry = { version = "0.8.4", default-features = false }
# Kailua
kailua-build = { path = "build/risczero" }
kailua-client = { path = "bin/client" }
kailua-common = { path = "crates/common" }
kailua-contracts = { path = "crates/contracts" }
kailua-host = { path = "bin/host" }
# Kona
kona-client = { git = "https://github.com/ethereum-optimism/kona", rev = "7a40d87", default-features = false }
kona-derive = { git = "https://github.com/ethereum-optimism/kona", rev = "7a40d87", default-features = false, features = ["serde"] }
kona-driver = { git = "https://github.com/ethereum-optimism/kona", rev = "7a40d87" }
kona-executor = { git = "https://github.com/ethereum-optimism/kona", rev = "7a40d87" }
kona-host = { git = "https://github.com/ethereum-optimism/kona", rev = "7a40d87" }
kona-mpt = { git = "https://github.com/ethereum-optimism/kona", rev = "7a40d87", features = ["serde"] }
kona-preimage = { git = "https://github.com/ethereum-optimism/kona", rev = "7a40d87", features = ["rkyv"] }
kona-proof = { git = "https://github.com/ethereum-optimism/kona", rev = "7a40d87" }
kona-std-fpvm = { git = "https://github.com/ethereum-optimism/kona", rev = "7a40d87" }
# RISC Zero zkVM
bonsai-sdk = { version = "1.2.0", features = ["non_blocking"] }
boundless-market = "0.4.1"
risc0-aggregation = "0.1.0"
risc0-build = "1.2.0"
risc0-ethereum-contracts = "1.2.0"
risc0-zkvm = { version = "1.2.0", features = ["heap-embedded-alloc", "unstable"] }
risc0-zkvm-platform = { version = "1.2.0", features = ["heap-embedded-alloc"] }
# RISC Zero Zeth
zeth-core = { git = "https://github.com/risc0/zeth", rev = "cecf5ec" }
zeth-core-optimism = { git = "https://github.com/risc0/zeth", rev = "cecf5ec" }
zeth-preflight = { git = "https://github.com/risc0/zeth", rev = "cecf5ec" }
zeth-preflight-optimism = { git = "https://github.com/risc0/zeth", rev = "cecf5ec" }
[profile.dev]
opt-level = 3
[profile.release]
debug = 1
lto = true
[patch.crates-io]
crypto-bigint = { git = "https://github.com/risc0/RustCrypto-crypto-bigint", tag = "v0.5.5-risczero.0" }
k256 = { git = "https://github.com/risc0/RustCrypto-elliptic-curves", tag = "k256/v0.13.3-risczero.0" }
sha2 = { git = "https://github.com/risc0/RustCrypto-hashes", tag = "sha2-v0.10.8-risczero.0" }