-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (35 loc) · 1.05 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
[package]
name = "evmpeek-cli"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "evmpeek-cli"
path = "src/main.rs"
required-features = ["cli"]
[build-dependencies]
# used to generate constants
vergen = { version = "7.0", default-features = false, features = ["build", "rustc", "git"] }
[dependencies]
# async
tokio = { version = "1", features = ["time"] }
parking_lot = "0.12"
futures = "0.3"
async-trait = "0.1"
# cli
clap = { version = "4.0", features = ["derive", "env", "wrap_help"], optional = true }
clap_complete = { version = "4.0", optional = true }
chrono = "0.4.19"
auto_impl = "0.5.0"
ctrlc = { version = "3", optional = true }
fdlimit = { version = "0.2.1", optional = true }
clap_complete_fig = "4.0"
ethereum-forkid = "0.11"
# tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
hex = "0.4.3"
[features]
default = ["cli"]
cmd = ["clap", "clap_complete", "ctrlc"]
cli = ["tokio/full", "cmd", "fdlimit"]