forked from ethereum/trin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (30 loc) · 888 Bytes
/
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
[package]
name = "trin"
version = "0.1.0"
authors = ["Jason Carver <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "2.33.3"
ctrlc = "3.1.8"
env_logger = "0.8.2"
eth2_ssz = "0.1.2"
eth2_ssz_derive = "0.1.0"
futures = "0.3.13"
interfaces = "0.0.7"
lazy_static = "1.4.0"
log = "0.4.14"
reqwest = { version = "0.11.0", features = ["blocking"] }
rlp = "0.5.0"
serde = {version = "1.0.125", features = ["derive"] }
serde_json = "1.0.59"
stunclient = "0.1.2"
threadpool = "1.8.1"
tracing = "0.1.26"
tracing-subscriber = "0.2.18"
tokio = {version = "1.2.0", features = ["full"]}
uint = { version = "0.8.5", default-features = false }
validator = { version = "0.13.0", features = ["derive"] }
[dependencies.discv5]
version = "0.1.0-beta.5"
git = "https://github.com/sigp/discv5"