-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
74 lines (70 loc) · 2.04 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
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
[package]
name = "ethereum-sentry"
version = "0.1.0"
authors = ["Artem Vorotnikov <artem@vorotnikov.me>"]
edition = "2018"
description = "Sentry that connects to Ethereum network"
license = "Apache-2.0"
publish = false
[dependencies]
anyhow = "1"
arrayvec = "0.5"
async-stream = "0.3"
async-trait = "0.1"
auto_impl = "0.4"
bytes = "1"
cidr = "0.1"
clap = "3.0.0-beta.2"
derive_more = "0.99"
devp2p = { path = "devp2p", features = ["discv4", "discv5", "dnsdisc"] }
discv4 = { path = "discv4" }
discv5 = { git = "https://github.com/vorot93/discv5", branch = "dev" }
dnsdisc = { path = "dnsdisc", features = ["trust-dns"] }
educe = { version = "0.4", features = ["Debug", "Default"] }
enr = { git = "https://github.com/rust-ethereum/enr", default-features = false, features = ["rust-secp256k1"] }
enum-primitive-derive = "0.2"
ethereum = { git = "https://github.com/rust-blockchain/ethereum", default-features = false }
ethereum-forkid = "0.5"
ethereum-tarpc-api = { git = "https://github.com/rust-ethereum/tarpc-api" }
ethereum-types = { version = "0.11", default-features = false }
funty = "<1.2"
futures = "0.3"
hex = "0.4"
hex-literal = "0.3"
k256 = { version = "0.7", features = ["ecdsa"] }
maplit = "1"
num-traits = "0.2"
parking_lot = "0.11"
plain_hasher = "0.2"
prost = "0.7"
reqwest = { version = "0.11", features = ["json"] }
rlp = "0.5"
rlp-derive = "0.1"
secp256k1 = "0.20"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_with = "1"
stubborn-io = "0.3"
tarpc = { version = "0.24", features = ["full"] }
task-group = { git = "https://github.com/vorot93/task-group" }
tokio = { version = "1", features = ["full"] }
tokio-serde = { version = "0.8", features = ["bincode"] }
tokio-stream = "0.1"
toml = "0.5"
tonic = { version = "0.4", features = ["tls"] }
tonic-health = "0.3"
tracing = "0.1"
tracing-futures = "0.2"
tracing-subscriber = "0.2"
trust-dns-resolver = "0.20"
url = { version = "2", features = ["serde"] }
[build-dependencies]
tonic-build = "0.4"
[dev-dependencies]
rand = "0.8"
[workspace]
members = [
"devp2p",
"discv4",
"dnsdisc",
]