[package]
name = "rbit"
version = "0.2.2"
edition = "2021"
description = "A BitTorrent library implementing BEP specifications"
license = "MIT OR Apache-2.0"
repository = "https://github.com/jspwrd/rbit"
documentation = "https://docs.rs/rbit"
readme = "README.md"
keywords = ["bittorrent", "torrent", "p2p", "dht", "peer-to-peer"]
categories = ["network-programming", "asynchronous"]
rust-version = "1.85"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
tokio = { version = "1", features = ["full"] }
futures = "0.3"
bytes = "1"
thiserror = "1"
sha1 = "0.10"
sha2 = "0.10"
rand = "0.9"
crc32c = "0.6"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] }
parking_lot = "0.12"
dashmap = "6"
crossbeam = "0.8"
tracing = "0.1"
[dev-dependencies]
tempfile = "3"
tokio-test = "0.4"