-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
61 lines (58 loc) · 1.82 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
[package]
name = "torrust-actix"
version = "4.0.7"
edition = "2021"
license = "AGPL-3.0"
authors = [
"Jasper Lingers <[email protected]>",
"Mick van Dijke <[email protected]>"
]
description = "A rich, fast and efficient Bittorrent Tracker."
[profile.release]
opt-level = 'z'
debug = false
debug-assertions = false
overflow-checks = false
lto = true
panic = 'abort'
incremental = false
codegen-units = 1
rpath = false
strip = true
[dependencies]
actix-cors = "^0.7"
actix-web = { version = "^4.9", features = ["rustls-0_23"] }
async-std = "^1.13"
binascii = "^0.1"
bip_bencode = "^0.4"
byteorder = "^1.5"
chrono = "^0.4"
clap = { version = "^4.5", features = ["derive"] }
clap_builder = "^4.5"
fern = { version = "^0.7", features = ["colored"] }
futures-util = "^0.3"
hex = "^0.4"
log = "^0.4"
parking_lot = { version = "^0.12", features = ["arc_lock", "hardware-lock-elision", "owning_ref", "serde", "deadlock_detection"] }
percent-encoding = "^2.3"
pin-project-lite = "^0.2"
rcgen = "^0.13"
regex = "^1.11"
rustls = { version = "^0.23", default-features = false, features = ["std", "ring"] }
rustls-pemfile = "^2.2"
sentry = { version = "^0.36", default-features = false, features = ["rustls", "backtrace", "contexts", "panic", "transport", "debug-images", "reqwest"] }
sentry-actix = "^0.36"
serde = { version = "^1.0", features = ["derive"] }
serde_json = { version = "^1.0", features = ["preserve_order"] }
serde_millis = "^0.1"
sha1 = "^0.10"
sqlx = { version = "^0.8", features = ["mysql", "postgres", "sqlite", "runtime-tokio-rustls"] }
thiserror = "^2.0"
tokio = { version = "^1.43", features = ["full"] }
tokio-shutdown = "^0.1"
toml = "^0.8"
utoipa = { version = "^5", features = ["actix_extras"] }
utoipa-swagger-ui = { version = "^8", features = ["actix-web"] }
tracing = "^0.1"
[target.'cfg(windows)'.build-dependencies]
winres = "^0.1"