forked from torrust/torrust-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
71 lines (58 loc) · 1.4 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
edition = "2021"
name = "torrust-tracker"
version = "2.3.0"
license = "AGPL-3.0"
authors = ["Mick van Dijke <mick@dutchbits.nl>"]
description = "A feature rich BitTorrent tracker."
repository = "https://github.com/torrust/torrust-tracker"
[profile.dev]
debug = 1
opt-level = 1
lto = "thin"
[profile.release]
debug = 1
opt-level = 3
lto = "fat"
[dependencies]
tokio = { version = "1", features = [
"rt-multi-thread",
"net",
"sync",
"macros",
"signal",
] }
serde = { version = "1.0", features = ["derive"] }
serde_bencode = "^0.2.3"
serde_json = "1.0"
serde_with = "2.0"
hex = "0.4.3"
percent-encoding = "2"
binascii = "0.1"
lazy_static = "1.4"
openssl = { version = "0.10", features = ["vendored"] }
warp = { version = "0.3", features = ["tls"] }
config = "0.13"
toml = "0.5"
log = { version = "0.4", features = ["release_max_level_info"] }
fern = "0.6"
chrono = "0.4"
r2d2 = "0.8"
r2d2_mysql = "21"
r2d2_sqlite = { version = "0.21", features = ["bundled"] }
rand = "0.8"
derive_more = "0.99"
thiserror = "1.0"
futures = "0.3"
async-trait = "0.1"
aquatic_udp_protocol = "0.2"
uuid = { version = "1", features = ["v4"] }
axum = "0.6.1"
axum-server = { version = "0.4.4", features = ["tls-rustls"] }
[dev-dependencies]
mockall = "0.11"
reqwest = { version = "0.11.13", features = ["json"] }
serde_urlencoded = "0.7.1"
serde_repr = "0.1.10"
serde_bytes = "0.11.8"
local-ip-address = "0.5.1"