-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (32 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
[package]
name = "rustorrent"
version = "1.0.0"
authors = ["Alexander Sagen <[email protected]>"]
edition = "2021"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nom = { version = "7.1.0", features = ["std"] }
sha-1 = "0.10"
crc32fast = "1.3.1"
percent-encoding = "2.1.0"
form_urlencoded = "1.0.1"
hex = "0.4.2"
structopt = "0.3"
rand = "0.8.0"
bytes = "1.0.1"
chrono = { version = "0.4.19", features = ["time"] }
hostname = "0.3.1"
rustls = "0.20.2"
webpki-roots = "0.22.0"
tokio = { version = "1.0.0", features = ["rt", "rt-multi-thread", "macros", "fs", "net"] }
tokio-util = { version = "0.6.1", features = ["codec", "io", "net"] }
hyper = { version = "0.14", features = ["client", "server", "tcp", "stream", "http1"] }
hyper-rustls = { version = "0.23", features = ["webpki-tokio"] }
trust-dns-resolver = { version = "0.20.3", features = ["dns-over-https-rustls"] }
async-compression = { version = "0.3.7", default-features = false, features = ["tokio", "gzip"] }
futures-core = "0.3"
futures-util = "0.3"
crossbeam-utils = "0.8"
chashmap = "2.2.2"
parking_lot = "0.11"