rqbit/crates/dht/Cargo.toml
2021-07-10 23:56:42 +01:00

21 lines
491 B
TOML

[package]
name = "dht"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
kad = "0.6"
tokio = {version = "1", features = ["macros", "rt-multi-thread", "net", "sync"]}
serde = {version = "1", features = ["derive"]}
hex = "0.4"
bencode = {path = "../bencode"}
anyhow = "1"
parking_lot = "0.11"
log = "0.4"
pretty_env_logger = "0.4"
librqbit_core = {path="../librqbit_core"}
[dev-dependencies]