forked from op-rs/kona
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (51 loc) · 1.58 KB
/
Cargo.toml
File metadata and controls
59 lines (51 loc) · 1.58 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
[package]
name = "kona-node"
version = "0.1.0"
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-derive.workspace = true
kona-sources.workspace = true
kona-cli.workspace = true
kona-engine.workspace = true
kona-genesis.workspace = true
kona-protocol.workspace = true
kona-rpc.workspace = true
kona-p2p = { workspace = true, features = ["metrics"] }
kona-registry = { workspace = true, features = ["tabled"] }
kona-node-service = { workspace = true, features = ["metrics"] }
# alloy
alloy-provider.workspace = true
alloy-transport.workspace = true
alloy-primitives.workspace = true
alloy-rpc-types-engine = { workspace = true, features = ["jwt", "serde"] }
# op-alloy
op-alloy-provider.workspace = true
# tui
ratatui.workspace = true
color-eyre.workspace = true
crossterm = { workspace = true, features = ["event-stream"] }
# general
dirs.workspace = true
url.workspace = true
tokio-stream.workspace = true
tracing-appender.workspace = true
discv5.workspace = true
tabled.workspace = true
libp2p.workspace = true
anyhow.workspace = true
tracing.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"] }
tracing-subscriber = { workspace = true, features = ["fmt", "env-filter"] }