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
84 lines (74 loc) · 2.55 KB
/
Cargo.toml
File metadata and controls
84 lines (74 loc) · 2.55 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
[package]
name = "kona-node"
version = "1.0.0-rc.1"
description = "Kona Consensus Node"
edition.workspace = true
authors.workspace = true
license.workspace = true
keywords.workspace = true
repository.workspace = true
categories.workspace = true
rust-version.workspace = true
[lints]
workspace = true
[dependencies]
# workspace
kona-rpc.workspace = true
kona-peers.workspace = true
kona-genesis = { workspace = true, features = ["tabled"] }
kona-interop = { workspace = true, features = ["serde"] }
kona-protocol.workspace = true
kona-cli = { workspace = true, features = ["secrets"] }
kona-gossip = { workspace = true, features = ["metrics"] }
kona-disc = { workspace = true, features = ["metrics"] }
kona-derive = { workspace = true, features = ["metrics"] }
kona-engine = { workspace = true, features = ["metrics"] }
kona-registry = { workspace = true, features = ["tabled"] }
kona-sources = { workspace = true }
kona-node-service = { workspace = true, features = ["metrics"] }
kona-providers-alloy = { workspace = true, features = ["metrics"] }
# alloy
alloy-chains.workspace = true
alloy-genesis.workspace = true
alloy-signer.workspace = true
alloy-provider.workspace = true
alloy-transport.workspace = true
alloy-transport-http.workspace = true
alloy-primitives.workspace = true
alloy-signer-local.workspace = true
alloy-rpc-types-engine = { workspace = true, features = ["jwt", "serde"] }
# op-alloy
op-alloy-provider.workspace = true
op-alloy-network.workspace = true
op-alloy-rpc-types-engine = { workspace = true, features = ["serde"] }
# general
url.workspace = true
dirs.workspace = true
strum.workspace = true
discv5.workspace = true
tabled.workspace = true
libp2p.workspace = true
derive_more.workspace = true
anyhow.workspace = true
futures.workspace = true
metrics.workspace = true
reqwest.workspace = true
tracing.workspace = true
thiserror.workspace = true
tokio-stream.workspace = true
tokio-util.workspace = true
serde_json = { workspace = true, features = ["std"] }
jsonrpsee = { workspace = true, features = ["server"] }
clap = { workspace = true, features = ["derive", "env"] }
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
backon = { workspace = true, features = ["std", "tokio", "tokio-sleep"] }
tracing-subscriber = { workspace = true, features = ["fmt", "env-filter"] }
[dev-dependencies]
rstest.workspace = true
tempfile.workspace = true
[build-dependencies]
vergen = { workspace = true, features = ["build", "cargo", "emit_and_set"] }
vergen-git2.workspace = true
[features]
default = [ "asm-keccak" ]
asm-keccak = [ "alloy-primitives/asm-keccak" ]