forked from torrust/torrust-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
102 lines (93 loc) · 2.78 KB
/
Cargo.toml
File metadata and controls
102 lines (93 loc) · 2.78 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[package]
name = "torrust-tracker"
readme = "README.md"
authors.workspace = true
description.workspace = true
documentation.workspace = true
edition.workspace = true
homepage.workspace = true
keywords.workspace = true
license-file.workspace = true
publish.workspace = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true
[workspace.package]
authors = [
"Nautilus Cyberneering <info@nautilus-cyberneering.de>, Mick van Dijke <mick@dutchbits.nl>",
]
categories = ["network-programming", "web-programming"]
description = "A feature rich BitTorrent tracker."
documentation = "https://docs.rs/crate/torrust-tracker/"
edition = "2021"
homepage = "https://torrust.com/"
keywords = ["bittorrent", "tracker", "file-sharing", "peer-to-peer", "torrent"]
license-file = "COPYRIGHT"
publish = true
repository = "https://github.com/torrust/torrust-tracker"
rust-version = "1.72"
version = "3.0.0-alpha.4"
[dependencies]
tokio = { version = "1.29", features = [
"rt-multi-thread",
"net",
"sync",
"macros",
"signal",
] }
serde = { version = "1.0", features = ["derive"] }
serde_bencode = "^0.2"
serde_json = "1.0"
serde_with = "3.2"
percent-encoding = "2.2"
binascii = "0.1"
lazy_static = "1.4"
openssl = { version = "0.10", features = ["vendored"] }
config = "0.13"
log = { version = "0.4", features = ["release_max_level_info"] }
fern = "0.6"
chrono = { version = "0.4.24", default-features = false, features = ["clock"] }
r2d2 = "0.8"
r2d2_mysql = "24.0"
r2d2_sqlite = { version = "0.22", features = ["bundled"] }
rand = "0.8"
derive_more = "0.99"
thiserror = "1.0"
futures = "0.3"
async-trait = "0.1"
aquatic_udp_protocol = "0.8"
uuid = { version = "1", features = ["v4"] }
axum = "0.6.20"
axum-server = { version = "0.5", features = ["tls-rustls"] }
axum-client-ip = "0.4.1"
tower-http = { version = "0.4.3", features = ["compression-full"] }
torrust-tracker-contrib-bencode = { version = "3.0.0-alpha.4", path = "contrib/bencode"}
torrust-tracker-primitives = { version = "3.0.0-alpha.4", path = "packages/primitives" }
torrust-tracker-configuration = { version = "3.0.0-alpha.4", path = "packages/configuration" }
torrust-tracker-located-error = { version = "3.0.0-alpha.4", path = "packages/located-error" }
multimap = "0.9"
hyper = "0.14"
[dev-dependencies]
mockall = "0.11"
reqwest = { version = "0.11.18", features = ["json"] }
serde_urlencoded = "0.7"
serde_repr = "0.1"
serde_bytes = "0.11"
local-ip-address = "0.5"
torrust-tracker-test-helpers = { version = "3.0.0-alpha.4", path = "packages/test-helpers" }
[workspace]
members = [
"contrib/bencode",
"packages/configuration",
"packages/primitives",
"packages/test-helpers",
"packages/located-error",
]
[profile.dev]
debug = 1
opt-level = 1
lto = "thin"
[profile.release]
debug = 1
opt-level = 3
lto = "fat"