-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
119 lines (112 loc) · 4.38 KB
/
Cargo.toml
File metadata and controls
119 lines (112 loc) · 4.38 KB
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
[workspace]
members = [
"common",
"node",
"pacaya",
"permissionless",
"shasta",
"tools/p2p_boot_node",
"urc",
]
resolver = "2"
default-members = ["node"]
[workspace.package]
version = "1.33.6"
edition = "2024"
repository = "https://github.com/NethermindEth/Catalyst"
license = "MIT"
[workspace.dependencies]
alloy = { version = "1.6", default-features = false, features = [
"full",
"node-bindings",
"rlp",
"rpc-types-beacon",
"rpc-types",
"kzg",
] }
alloy-json-rpc = { version = "1.6", default-features = false }
alloy-rlp = { version = "0.3", default-features = false }
anyhow = { version = "1", default-features = false }
async-trait = { version = "0.1", default-features = false }
blst = { version = "0.3", default-features = false }
chrono = { version = "0.4", default-features = false, features = [
"clock",
"std",
] }
clap = { version = "4.5", default-features = false, features = [
"std",
"color",
"help",
"usage",
"error-context",
"suggestions",
"derive",
] }
common = { path = "common" }
discv5 = { version = "0.10", default-features = false, features = ["libp2p"] }
dotenvy = { version = "0.15", default-features = false }
ecdsa = { version = "0.16", default-features = false }
elliptic-curve = { version = "0.13", default-features = false }
flate2 = { version = "1.1", default-features = false, features = ["zlib"] }
futures = { version = "0.3.31", default-features = false }
futures-util = { version = "0.3", default-features = false }
hex = { version = "0.4", default-features = false }
http = { version = "1.4", default-features = false }
jsonrpsee = { version = "0.26", default-features = false, features = [
"http-client",
"server",
] }
jsonwebtoken = { version = "10.3", default-features = false, features = [
"aws_lc_rs",
] }
k256 = { version = "0.13", default-features = false, features = [
"arithmetic",
"ecdsa",
"pkcs8",
"precomputed-tables",
"schnorr",
"std",
] }
lazy_static = { version = "1.5", default-features = false }
mockito = { version = "1.7", default-features = false }
pacaya = { path = "pacaya" }
permissionless = { path = "permissionless" }
prometheus = { version = "0.14", default-features = false }
rand = { version = "0.9", default-features = false }
rand_core = { version = "0.9", default-features = false }
reqwest = { version = "0.13", default-features = true, features = ["json"] }
rustls = { version = "0.23", default-features = true }
secp256k1 = { version = "0.30", features = ["recovery", "rand"] }
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_json = { version = "1.0", default-features = false }
shasta = { path = "shasta" }
ssz_rs = { version = "0.9.0" }
strum = { version = "0.27", features = ["derive"] }
taiko_alethia_reth = { git = "https://github.com/taikoxyz/alethia-reth.git", rev = "3e0fdad9b9fbf7f6550c7209185fd6623468452c", package = "alethia-reth-consensus" }
taiko_bindings = { git = "https://github.com/taikoxyz/taiko-mono.git", rev = "33b4e340155e962eab1dfa2b8932a802d26aafc5", package = "bindings" }
taiko_preconfirmation_driver = { git = "https://github.com/taikoxyz/taiko-mono.git", rev = "33b4e340155e962eab1dfa2b8932a802d26aafc5", package = "preconfirmation-driver" }
taiko_preconfirmation_types = { git = "https://github.com/taikoxyz/taiko-mono.git", rev = "33b4e340155e962eab1dfa2b8932a802d26aafc5", package = "preconfirmation-types" }
taiko_protocol = { git = "https://github.com/taikoxyz/taiko-mono.git", rev = "33b4e340155e962eab1dfa2b8932a802d26aafc5", package = "protocol" }
taiko_rpc = { git = "https://github.com/taikoxyz/taiko-mono.git", rev = "33b4e340155e962eab1dfa2b8932a802d26aafc5", package = "rpc" }
tokio = { version = "1.49", default-features = false, features = ["full"] }
tokio-util = { version = "0.7", default-features = false }
tracing = { version = "0.1", default-features = false }
tracing-subscriber = { version = "0.3", default-features = false, features = [
"fmt",
"env-filter",
] }
urc = { path = "urc" }
warp = { version = "0.4", default-features = false, features = ["server"] }
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
cast_lossless = "deny"
cast_possible_truncation = "deny"
cast_possible_wrap = "deny"
cast_precision_loss = "deny"
cast_sign_loss = "deny"
needless_return = "deny"
panicking_overflow_checks = "deny"
unwrap_used = "deny"
[profile.release]
overflow-checks = true