forked from torrust/torrust-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
86 lines (79 loc) · 2.72 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
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
[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", "file-sharing", "peer-to-peer", "torrent", "tracker"]
license-file = "COPYRIGHT"
publish = true
repository = "https://github.com/torrust/torrust-tracker"
rust-version = "1.72"
version = "3.0.0-alpha.11"
[dependencies]
aquatic_udp_protocol = "0.8"
async-trait = "0.1"
axum = "0.6"
axum-client-ip = "0.4"
axum-server = { version = "0.5", features = ["tls-rustls"] }
binascii = "0.1"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
config = "0.13"
derive_more = "0.99"
fern = "0.6"
futures = "0.3"
hyper = "0.14"
lazy_static = "1.4"
log = { version = "0.4", features = ["release_max_level_info"] }
multimap = "0.9"
openssl = { version = "0.10", features = ["vendored"] }
percent-encoding = "2.2"
r2d2 = "0.8"
r2d2_mysql = "24.0"
r2d2_sqlite = { version = "0.22", features = ["bundled"] }
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_bencode = "^0.2"
serde_json = "1.0"
serde_with = "3.2"
thiserror = "1.0"
tokio = { version = "1.29", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] }
torrust-tracker-configuration = { version = "3.0.0-alpha.11", path = "packages/configuration" }
torrust-tracker-contrib-bencode = { version = "3.0.0-alpha.11", path = "contrib/bencode" }
torrust-tracker-located-error = { version = "3.0.0-alpha.11", path = "packages/located-error" }
torrust-tracker-primitives = { version = "3.0.0-alpha.11", path = "packages/primitives" }
tower-http = { version = "0.4", features = ["compression-full"] }
uuid = { version = "1", features = ["v4"] }
[dev-dependencies]
local-ip-address = "0.5"
mockall = "0.11"
reqwest = { version = "0.11.18", features = ["json"] }
serde_bytes = "0.11"
serde_repr = "0.1"
serde_urlencoded = "0.7"
torrust-tracker-test-helpers = { version = "3.0.0-alpha.11", path = "packages/test-helpers" }
[workspace]
members = ["contrib/bencode", "packages/configuration", "packages/located-error", "packages/primitives", "packages/test-helpers"]
[profile.dev]
debug = 1
lto = "thin"
opt-level = 1
[profile.release]
debug = 1
lto = "fat"
opt-level = 3