-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
52 lines (46 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "RatioUp"
author = "slundi"
version = "1.2.4"
edition = "2021"
homepage = "https://codeberg.org/slundi/RatioUp"
[features]
udp = ["dep:bytes", "dep:reqwest"]
[source.vendored-sources]
directory = "vendor"
[dependencies]
rand = "0.8"
bytes = { version = "1", optional = true }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4", features = ["serde"] }
ureq = { version = "2", features = ["charset", "gzip"] }
tokio = { version = "1.36", features = ["rt", "fs", "net"] }
futures-util = { version = "0.3", default-features = false, features = ["std"] }
once_cell = "1.19"
sanitize-filename = "0.5"
uuid = { version = "1", features = ["v4"] }
byte-unit = "5"
reqwest = { version = "0.11", features = [
"blocking",
"rustls-tls",
"gzip",
"brotli",
"deflate",
], optional = true }
percent-encoding = "2"
fake-torrent-client = "0.9"
dotenv = "0.15"
log = "0.4"
simple_logger = "4"
#bittorrent parsing
serde_bytes = "0.11"
serde_bencode = "0.2"
serde_derive = "1"
hmac-sha1-compact = "1"
hex = "0.4"
# actix
actix = "0.13"
actix-web = "4"
actix-files = "0.6"
actix-multipart = "0.6"