Playing with DHT over UDP

This commit is contained in:
Igor Katson 2021-07-10 23:56:42 +01:00
parent 1f6f9988f5
commit f6656841c0
5 changed files with 173 additions and 15 deletions

View file

@ -7,8 +7,15 @@ edition = "2018"
[dependencies]
kad = "0.6"
tokio = {version = "1", features = ["macros", "rt"]}
tokio = {version = "1", features = ["macros", "rt-multi-thread", "net", "sync"]}
serde = {version = "1", features = ["derive"]}
hex = "0.4"
bencode = {path = "../bencode"}
anyhow = "1"
anyhow = "1"
parking_lot = "0.11"
log = "0.4"
pretty_env_logger = "0.4"
librqbit_core = {path="../librqbit_core"}
[dev-dependencies]