rqbit/crates/dht/Cargo.toml

28 lines
682 B
TOML
Raw Normal View History

[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]
2021-07-10 23:56:42 +01:00
tokio = {version = "1", features = ["macros", "rt-multi-thread", "net", "sync"]}
2021-07-13 16:10:36 +01:00
tokio-stream = {version = "0.1", features = ["sync"]}
2021-07-10 12:26:37 +01:00
serde = {version = "1", features = ["derive"]}
2021-07-14 01:03:39 +01:00
serde_json = "1"
hex = "0.4"
bencode = {path = "../bencode", default-features=false}
2021-07-10 23:56:42 +01:00
anyhow = "1"
2022-12-04 13:11:40 +00:00
parking_lot = "0.12"
2021-07-10 23:56:42 +01:00
log = "0.4"
pretty_env_logger = "0.4"
2021-07-12 11:56:26 +01:00
futures = "0.3"
2021-07-12 14:38:55 +01:00
rand = "0.8"
2021-07-14 15:29:59 +01:00
indexmap = "1.7"
2022-12-04 13:11:40 +00:00
directories = "4"
2021-07-10 23:56:42 +01:00
2021-07-12 19:42:48 +01:00
clone_to_owned = {path="../clone_to_owned"}
2021-07-10 23:56:42 +01:00
librqbit_core = {path="../librqbit_core"}
[dev-dependencies]