This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
forked from anton-rs/kona
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
110 lines (95 loc) · 3.7 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
[workspace.package]
version = "0.0.0"
edition = "2021"
license = "MIT"
rust-version = "1.80"
authors = ["clabby", "refcell"]
repository = "https://github.com/anton-rs/kona"
homepage = "https://github.com/anton-rs/kona"
keywords = ["ethereum", "optimism", "crypto"]
categories = ["cryptography", "cryptography::cryptocurrencies"]
exclude = ["**/target"]
[workspace]
members = ["crates/*", "examples/*", "bin/*"]
default-members = ["bin/host", "bin/client"]
# Explicitly set the resolver to version 2, which is the default for packages with edition >= 2021
# https://doc.rust-lang.org/edition-guide/rust-2021/default-cargo-resolver.html
resolver = "2"
[profile.dev]
opt-level = 1
overflow-checks = false
[profile.bench]
debug = true
[profile.dev-client]
inherits = "dev"
panic = "abort"
[profile.release-client-lto]
inherits = "release"
panic = "abort"
codegen-units = 1
lto = "fat"
[workspace.dependencies]
# Workspace
kona-client = { path = "bin/client", version = "0.1.0" }
kona-mpt = { path = "crates/mpt", version = "0.0.2" }
kona-common = { path = "crates/common", version = "0.0.2" }
kona-preimage = { path = "crates/preimage", version = "0.0.2" }
kona-executor = { path = "crates/executor", version = "0.0.1" }
kona-common-proc = { path = "crates/common-proc", version = "0.0.2" }
kona-derive = { path = "crates/derive", version = "0.0.2", default-features = false }
kona-primitives = { path = "crates/primitives", version = "0.0.1", default-features = false }
# General
anyhow = { version = "1.0.86", default-features = false }
cfg-if = "1.0.0"
hashbrown = "0.14.5"
spin = { version = "0.9.8", features = ["mutex"] }
lru = "0.12.3"
async-trait = "0.1.80"
lazy_static = "1.5.0"
reqwest = "0.12"
os_pipe = "1.2.1"
actix-web = "4.8.0"
rand = "0.8.5"
futures = { version = "0.3.30", default-features = false }
prometheus = { version = "0.13.4", features = ["process"] }
tokio = { version = "1.38", features = ["full"] }
clap = { version = "4.5.4", features = ["derive", "env"] }
sha2 = { version = "0.10.8", default-features = false }
c-kzg = { version = "1.0.2", default-features = false }
alloc-no-stdlib = "2.0.4"
linked_list_allocator = "0.10.5"
command-fds = { version = "0.3", features = ["tokio"] }
# Tracing
tracing = { version = "0.1.40", default-features = false }
tracing-loki = "0.2.5"
tracing-subscriber = { version = "0.3.18", features = ["fmt"] }
# Encoding
miniz_oxide = "0.8.0"
brotli = { version = "6.0.0", default-features = false }
# Testing
proptest = "1.4"
criterion = { version = "0.5.1", features = ["html_reports"] }
pprof = { version = "0.13.0", features = ["criterion", "flamegraph", "frame-pointer"] }
# Serialization
rkyv = "0.7.44"
serde = { version = "1.0.203", default-features = false, features = ["derive"] }
serde_json = { version = "1.0.125", default-features = false }
# Ethereum
unsigned-varint = "0.8.0"
revm = { version = "14.0", default-features = false }
# Superchain
superchain = "0.3"
superchain-primitives = { version = "0.3", default-features = false }
# Alloy
alloy-rlp = { version = "0.3", default-features = false }
alloy-trie = { version = "0.5", default-features = false }
alloy-provider = { version = "0.3", default-features = false }
alloy-primitives = { version = "0.8", default-features = false }
alloy-rpc-types = { version = "0.3", default-features = false }
alloy-consensus = { version = "0.3", default-features = false }
alloy-transport = { version = "0.3", default-features = false }
alloy-transport-http = { version = "0.3", default-features = false }
alloy-eips = { version = "0.3", default-features = false }
alloy-rpc-client = { version = "0.3", default-features = false }
alloy-node-bindings = { version = "0.3", default-features = false }
op-alloy-consensus = { version = "0.2", default-features = false }