forked from torrust/torrust-tracker
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
49 lines (39 loc) · 940 Bytes
/
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
[package]
edition = "2021"
name = "torrust-tracker"
version = "2.3.1"
license = "AGPL-3.0"
authors = ["Mick van Dijke <[email protected]>"]
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.7", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_bencode = "^0.2.3"
serde_json = "1.0.72"
hex = "0.4.3"
percent-encoding = "2.1.0"
binascii = "0.1"
warp = { version = "0.3", features = ["tls"] }
config = "0.11"
toml = "0.5"
log = { version = "0.4", features = ["release_max_level_info"] }
fern = "0.6"
chrono = "0.4"
r2d2 = "0.8.8"
r2d2_mysql = "21.0.0"
r2d2_sqlite = "0.16.0"
rand = "0.8.4"
derive_more = "0.99"
thiserror = "1.0"
futures = "0.3.21"
async-trait = "0.1.52"
aquatic_udp_protocol = "0.2.0"