-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
35 lines (33 loc) · 897 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
34
35
[package]
name = "discv5-cli"
version = "0.7.1"
description = "Simple CLI utility for creating and debugging discovery v5 servers"
authors = ["Age Manning <Age@AgeManning.com>"]
edition = "2018"
readme = "./README.md"
keywords = ["ethereum", "discv5", "discovery", "p2p", "dht"]
repository = "https://github.com/AgeManning/discv5-cli"
categories = ["cryptography::cryptocurrencies"]
license = "MIT"
exclude = [
".gitignore",
".github/*"
]
[dependencies]
discv5 = { version = "0.8", features = ["libp2p"] }
sha2 = "0.10"
libsecp256k1 = "0.7"
libp2p-identity = { version = "0.2.9", features = ["secp256k1"] }
libp2p-core = "0.42"
clap = { version = "4.5", features = ["derive"] }
hex = "0.4"
log = "0.4"
simple_logger = "5.0"
futures = "0.3"
tokio = { version = "1", features = ["full"] }
eyre = "0.6.12"
serde = "1.0.210"
serde_json = "1.0.128"
[[bin]]
name = "discv5-cli"
path = "src/main.rs"