forked from sigp/discv5
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
55 lines (52 loc) · 1.51 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
[package]
name = "discv5"
authors = ["Age Manning <[email protected]>"]
edition = "2018"
version = "0.1.0-beta.3"
description = "Implementation of the p2p discv5 discovery protocol"
license = "MIT"
repository = "https://github.com/sigp/discv5"
readme = "./README.md"
keywords = ["peer-to-peer", "libp2p", "networking", "discovery", "discv5"]
categories = ["network-programming", "asynchronous"]
exclude = [
".gitignore",
".github/*"
]
[dependencies]
enr = { version = "0.5.0", features = ["k256", "ed25519"] }
tokio = { version = "1.1", features = ["net", "sync", "macros"] }
tokio-stream = "0.1.2"
tokio-util = { version = "0.6.2", features = ["time"] }
libp2p-core = { version = "0.27.0", optional = true }
zeroize = { version = "1.1.1", features = ["zeroize_derive"] }
futures = "0.3.8"
uint = { version = "0.8.5", default-features = false }
rlp = "0.5"
sha2 = "0.9.2"
hkdf = "0.10.0"
hex = "0.4.2"
fnv = "1.0.7"
arrayvec = "0.5.2"
digest = "0.9.0"
rand = "0.7.3"
smallvec = "1.5.0"
parking_lot = "0.11.1"
lru_time_cache = "0.11.2"
lazy_static = "1.4.0"
aes-gcm = "0.8.0"
aes-ctr = "0.6.0"
k256 = { version = "0.7", features = ["zeroize", "ecdh", "sha2"] }
tracing = { version = "0.1.21", features = ["log"] }
tracing-subscriber = "0.2.15"
[dev-dependencies]
quickcheck = "0.9.2"
env_logger = "0.8.2"
hex-literal = "0.3.1"
simple_logger = "1.11.0"
tokio-util = { version = "0.6.2", features = ["time"] }
tokio = { version = "1.1", features = ["full"] }
rand_xorshift = "0.2.0"
rand_core = "0.5.1"
[features]
libp2p = ["libp2p-core"]