-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
41 lines (39 loc) · 1.12 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
[package]
name = "torrust-axum"
version = "3.1.0"
edition = "2021"
license = "AGPL-3.0"
authors = [
"Jasper Lingers <info@power2all.com>",
"Mick van Dijke <mick@dutchbits.nl>"
]
description = "A rich, fast and efficient Bittorrent Tracker."
[profile.release]
lto = true
codegen-units = 1 # Enable this to optimize filesize
panic = "abort" # Enable this to optimize filesize
[dependencies]
async-trait = "0.1.57"
axum = { version = "0.5.13", features = ["ws"] }
axum-client-ip = "0.2.0"
axum-server = { version = "0.4.1", features = ["tls-rustls"] }
binascii = "0.1.4"
bip_bencode = "0.4.4"
byteorder = "1.4.3"
chrono = "0.4.19"
either = "1.7.0"
fern = { version = "0.6.1", features = ["colored"] }
futures = "0.3.21"
hex = "0.4.3"
hyper = { version = "0.14.20", features = ["full"] }
log = "0.4.17"
percent-encoding = "2.1.0"
rustls = "0.20.6"
scc = "0.8.3"
serde = { version = "1.0.141", features = ["derive"] }
serde_json = "1.0.82"
sqlx = { version = "0.6.0", features = ["mysql", "postgres", "sqlite", "runtime-tokio-rustls"] }
thiserror = "1.0.31"
tokio = { version = "1.20.1", features = ["full"] }
toml = "0.5.9"
tower = "0.4.13"