-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
99 lines (84 loc) · 4.49 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
[workspace]
resolver = "2"
members = ["bin/*", "crates/*"]
[workspace.dependencies]
# Workspace
hokulea-client = { path = "bin/client", version = "0.1.0", default-features = false }
hokulea-eigenda = { path = "crates/eigenda", version = "0.1.0", default-features = false }
hokulea-proof = { path = "crates/proof", version = "0.1.0", default-features = false }
# Kona
# We use git dependencies instead of version dependencies because Kona is moving very fast right now
# but publish infrequently (last was 2 weeks ago). We want to make sure to use the latest code
# while we're still figuring out how to integrate with it.
kona-mpt = { git = "https://github.com/anton-rs/kona", rev = "8f21eff5d48f2a7e72380c15e24a927799dd8175", default-features = false }
kona-derive = { git = "https://github.com/anton-rs/kona", rev = "8f21eff5d48f2a7e72380c15e24a927799dd8175", default-features = false }
kona-driver = { git = "https://github.com/anton-rs/kona", rev = "8f21eff5d48f2a7e72380c15e24a927799dd8175", default-features = false }
kona-executor = { git = "https://github.com/anton-rs/kona", rev = "8f21eff5d48f2a7e72380c15e24a927799dd8175", default-features = false }
kona-proof = { git = "https://github.com/anton-rs/kona", rev = "8f21eff5d48f2a7e72380c15e24a927799dd8175", default-features = false }
kona-std-fpvm = { git = "https://github.com/anton-rs/kona", rev = "8f21eff5d48f2a7e72380c15e24a927799dd8175", default-features = false }
kona-preimage = { git = "https://github.com/anton-rs/kona", rev = "8f21eff5d48f2a7e72380c15e24a927799dd8175", default-features = false }
kona-std-fpvm-proc = { git = "https://github.com/anton-rs/kona", rev = "8f21eff5d48f2a7e72380c15e24a927799dd8175", default-features = false }
# These two kona crates aren't published to crates.io, so we need to use git dependencies.
# TODO: Given that Hokulea is just meant to be a library crate to extend kona with eigenda understanding,
# we prob want to move these to dev-dependencies since we only need them for testing?
kona-client = { git = "https://github.com/anton-rs/kona", rev = "8f21eff5d48f2a7e72380c15e24a927799dd8175", default-features = false }
kona-host = { git = "https://github.com/anton-rs/kona", rev = "8f21eff5d48f2a7e72380c15e24a927799dd8175", default-features = false }
# Alloy
alloy-rlp = { version = "0.3.9", default-features = false }
alloy-trie = { version = "0.7.4", default-features = false }
alloy-eips = { version = "0.8.0", default-features = false }
alloy-serde = { version = "0.8.0", default-features = false }
alloy-provider = { version = "0.8.0", default-features = false }
alloy-consensus = { version = "0.8.0", default-features = false }
alloy-transport = { version = "0.8.0", default-features = false }
alloy-rpc-types = { version = "0.8.0", default-features = false }
alloy-rpc-client = { version = "0.8.0", default-features = false }
alloy-primitives = { version = "0.8.14", default-features = false }
alloy-node-bindings = { version = "0.8.0", default-features = false }
alloy-transport-http = { version = "0.8.0", default-features = false }
alloy-rpc-types-engine = { version = "0.8.0", default-features = false }
alloy-rpc-types-beacon = { version = "0.8.0", default-features = false }
# OP Alloy
op-alloy-genesis = { version = "0.8.2", default-features = false }
op-alloy-registry = { version = "0.8.2", default-features = false }
op-alloy-protocol = { version = "0.8.2", default-features = false }
op-alloy-consensus = { version = "0.8.2", default-features = false }
op-alloy-rpc-types-engine = { version = "0.8.2", default-features = false }
# General
lru = "0.12.4"
spin = "0.9.8"
rand = "0.8.5"
clap = "4.5.19"
tokio = "1.42.0"
async-channel = "2.3.1"
cfg-if = "1.0.0"
reqwest = "0.12.9"
async-trait = "0.1.83"
linked_list_allocator = "0.10.5"
# General
sha2 = { version = "0.10.8", default-features = false }
c-kzg = { version = "2.0.0", default-features = false }
anyhow = { version = "1.0.93", default-features = false }
thiserror = { version = "2.0.4", default-features = false }
# Tracing
tracing-loki = "0.2.5"
tracing-subscriber = "0.3.19"
tracing = { version = "0.1.41", default-features = false }
# Testing
pprof = "0.14.0"
proptest = "1.5.0"
criterion = "0.5.1"
# Serialization
rkyv = "0.8.9"
serde = { version = "1.0.215", default-features = false }
serde_json = { version = "1.0.133", default-features = false }
# Ethereum
unsigned-varint = "0.8.0"
revm = { version = "16.0.0", default-features = false }
# K/V database
rocksdb = { version = "0.22.0", default-features = false }
[profile.dev]
opt-level = 3
[profile.release]
debug = 1
lto = true