forked from ethereum-optimism/optimism
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
94 lines (86 loc) · 2.78 KB
/
Cargo.toml
File metadata and controls
94 lines (86 loc) · 2.78 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
[package]
name = "kona-node-service"
description = "An implementation of the OP Stack consensus node service"
version = "0.1.3"
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
[lints]
workspace = true
[dependencies]
# workspace
kona-gossip.workspace = true
kona-disc.workspace = true
kona-engine.workspace = true
kona-sources.workspace = true
kona-genesis.workspace = true
kona-derive.workspace = true
kona-interop.workspace = true
kona-protocol.workspace = true
kona-providers-alloy.workspace = true
kona-rpc = { workspace = true, features = ["client"] }
kona-peers.workspace = true
kona-macros.workspace = true
# alloy
alloy-chains.workspace = true
alloy-signer.workspace = true
alloy-signer-local.workspace = true
alloy-primitives.workspace = true
alloy-rpc-client.workspace = true
alloy-rpc-types-eth.workspace = true
alloy-rpc-types-engine = { workspace = true, features = ["jwt", "serde"] }
alloy-provider = { workspace = true, features = ["reqwest", "reqwest-rustls-tls", "hyper", "hyper-tls"] }
alloy-eips.workspace = true
alloy-transport.workspace = true
alloy-transport-http = { workspace = true, features = ["reqwest", "reqwest-rustls-tls", "hyper", "hyper-tls", "jwt-auth"] }
# op-alloy
op-alloy-network.workspace = true
op-alloy-rpc-types-engine = { workspace = true, features = ["std"] }
op-alloy-provider.workspace = true
# general
url.workspace = true
libp2p.workspace = true
libp2p-stream.workspace = true
discv5.workspace = true
futures.workspace = true
tracing.workspace = true
thiserror.workspace = true
tokio-util.workspace = true
async-trait.workspace = true
async-stream.workspace = true
tokio-stream.workspace = true
strum = { workspace = true, features = ["derive"] }
backon.workspace = true
derive_more = { workspace = true, features = ["debug", "eq"] }
jsonrpsee = { workspace = true, features = ["server", "http-client"] }
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
tower.workspace = true
http-body-util.workspace = true
# metrics
metrics = { workspace = true, optional = true }
[dev-dependencies]
rstest.workspace = true
arbitrary.workspace = true
rand.workspace = true
anyhow.workspace = true
backon.workspace = true
mockall.workspace = true
alloy-primitives = { workspace = true, features = ["k256"] }
alloy-rpc-types-engine = { workspace = true, features = ["arbitrary"] }
alloy-consensus = { workspace = true, features = ["arbitrary"] }
op-alloy-consensus = { workspace = true, features = ["arbitrary", "k256"] }
kona-derive = {workspace = true, features = ["test-utils"]}
[features]
default = []
metrics = [
"dep:metrics",
"kona-derive/metrics",
"kona-disc/metrics",
"kona-engine/metrics",
"kona-gossip/metrics",
"kona-providers-alloy/metrics",
"kona-rpc/metrics",
"libp2p/metrics",
]