-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
36 lines (33 loc) · 1.13 KB
/
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
36
[package]
name = "rustydht-lib"
version = "4.0.0"
authors = ["raptorswing"]
edition = "2018"
description = "A library for interacting with BitTorrent's mainline DHT."
homepage = "https://github.com/raptorswing/rustydht-lib"
license = "MIT"
keywords = ["bittorrent", "torrent", "dht", "kademlia", "mainline"]
categories = ["network-programming"]
repository = "https://github.com/raptorswing/rustydht-lib"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.52"
crc = "1.8.1"
dyn-clone = "1.0.4"
futures = "0.3.19"
hex = "0.4.3"
log = "0.4.14"
lru = "0.7.2"
rand = "0.8.4"
serde_bencode = "0.2.3"
serde = { version = "1.0.133", features = ["derive"] }
serde_bytes = "0.11.5"
serde_derive = "1.0.133"
thiserror = "1.0.30"
tokio = { version = "1.15.0", features = ["rt-multi-thread","net", "time", "macros", "sync"] }
[dev-dependencies]
clap = "2.34.0"
rand_chacha = "0.3.0"
simple_logger = { version = "1.16.0", default-features = false, features = ["colors"] }
tokio = { version = "1.15.0", features = ["rt-multi-thread","net", "time", "macros", "sync", "signal"] }
warp = "0.3.2"