-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathCargo.toml
More file actions
131 lines (119 loc) · 4.98 KB
/
Copy pathCargo.toml
File metadata and controls
131 lines (119 loc) · 4.98 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
[package]
default-run = "torrust-tracker"
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.workspace = true
publish.workspace = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true
[lib]
name = "torrust_tracker_lib"
[lints]
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 = "2024"
homepage = "https://torrust.com/"
keywords = [ "bittorrent", "file-sharing", "peer-to-peer", "torrent", "tracker" ]
license = "AGPL-3.0-only"
publish = true
repository = "https://github.com/torrust/torrust-tracker"
rust-version = "1.88"
version = "3.0.0-develop"
[dependencies]
anyhow = "1"
axum-server = { version = "0", features = [ "tls-rustls-no-provider" ] }
base64 = "0.22.1"
torrust-tracker-http-core = { version = "3.0.0-develop", path = "packages/http-core" }
torrust-tracker-core = { version = "3.0.0-develop", path = "packages/tracker-core" }
torrust-tracker-udp-core = { version = "3.0.0-develop", path = "packages/udp-core" }
chrono = { version = "0", default-features = false, features = [ "clock" ] }
clap = { version = "4", features = [ "derive", "env" ] }
pbkdf2 = "0.13.0"
rand = "0"
regex = "1"
reqwest = { version = "0", features = [ "json", "multipart" ] }
serde = { version = "1", features = [ "derive" ] }
serde_json = { version = "1", features = [ "preserve_order" ] }
sha1 = "0.11.0"
sha2 = "0.11.0"
tempfile = "3.27.0"
thiserror = "2.0.12"
tokio = { version = "1", features = [ "macros", "net", "rt-multi-thread", "signal", "sync" ] }
tokio-util = "0.7.15"
toml = "1"
torrust-tracker-axum-health-check-api-server = { version = "3.0.0-develop", path = "packages/axum-health-check-api-server" }
torrust-tracker-axum-http-server = { version = "3.0.0-develop", path = "packages/axum-http-server" }
torrust-tracker-axum-rest-api-server = { version = "3.0.0-develop", path = "packages/axum-rest-api-server" }
torrust-tracker-axum-server = { version = "3.0.0-develop", path = "packages/axum-server" }
torrust-tracker-rest-api-client = { version = "3.0.0-develop", path = "packages/rest-api-client" }
torrust-tracker-rest-api-runtime-adapter = { version = "3.0.0-develop", path = "packages/rest-api-runtime-adapter" }
torrust-tracker-rest-api-protocol = { version = "3.0.0-develop", path = "packages/rest-api-protocol" }
torrust-server-lib = "0.1.0"
torrust-clock = "3.0.0"
torrust-tracker-configuration = { version = "3.0.0-develop", path = "packages/configuration" }
torrust-tracker-primitives = { version = "3.0.0-develop", path = "packages/primitives" }
torrust-tracker-swarm-coordination-registry = { version = "3.0.0-develop", path = "packages/swarm-coordination-registry" }
torrust-tracker-udp-server = { version = "3.0.0-develop", path = "packages/udp-server" }
tracing = "0"
tracing-subscriber = { version = "0", features = [ "json" ] }
[dev-dependencies]
torrust-info-hash = "=0.2.0"
torrust-tracker-client = { package = "torrust-tracker-client-lib", version = "3.0.0-develop", path = "packages/tracker-client" }
torrust-tracker-test-helpers = { version = "3.0.0-develop", path = "packages/test-helpers" }
[workspace]
members = [
"console/tracker-client",
"contrib/dev-tools/analysis/workspace-coupling",
"packages/e2e-tools",
"packages/persistence-benchmark",
"packages/rest-api-application",
"packages/rest-api-protocol",
"packages/rest-api-runtime-adapter",
"packages/torrent-repository-benchmarking",
]
[workspace.lints.rust]
deprecated-safe = { level = "deny", priority = -1 }
future-incompatible = { level = "deny", priority = -1 }
let-underscore = { level = "deny", priority = -1 }
nonstandard-style = { level = "deny", priority = -1 }
rust-2018-compatibility = { level = "deny", priority = -1 }
rust-2018-idioms = { level = "deny", priority = -1 }
rust-2021-compatibility = { level = "deny", priority = -1 }
rust-2024-compatibility = { level = "deny", priority = -1 }
unsafe-code = { level = "warn", priority = -1 }
unused = { level = "deny", priority = -2 }
warnings = { level = "deny", priority = -1 }
[workspace.lints.clippy]
all = { level = "deny", priority = -1 }
complexity = { level = "deny", priority = -1 }
correctness = { level = "deny", priority = -1 }
exit = { level = "deny", priority = 0 }
nursery = { level = "warn", priority = -1 }
pedantic = { level = "deny", priority = -1 }
perf = { level = "deny", priority = -1 }
print_stderr = { level = "deny", priority = 0 }
print_stdout = { level = "deny", priority = 0 }
style = { level = "deny", priority = -1 }
suspicious = { level = "deny", priority = -1 }
[profile.dev]
debug = 1
lto = "fat"
opt-level = 1
[profile.release]
debug = 1
lto = "fat"
opt-level = 3
[profile.release-debug]
debug = true
inherits = "release"