-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (47 loc) · 1.84 KB
/
Copy pathCargo.toml
File metadata and controls
49 lines (47 loc) · 1.84 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
[package]
authors.workspace = true
description = "The Torrust Bittorrent UDP tracker."
documentation.workspace = true
edition.workspace = true
homepage.workspace = true
keywords = [ "axum", "bittorrent", "server", "torrust", "tracker", "udp" ]
license.workspace = true
name = "torrust-tracker-udp-server"
publish.workspace = true
readme = "README.md"
repository.workspace = true
rust-version.workspace = true
version = "0.1.0"
[dependencies]
torrust_tracker_udp_protocol = { package = "torrust-tracker-udp-protocol", version = "0.1.0", path = "../udp-protocol" }
torrust-peer-id = "0.1.0"
torrust-info-hash = "=0.2.0"
torrust-tracker-client = { package = "torrust-tracker-client-lib", version = "0.1.0", path = "../tracker-client" }
torrust-tracker-core = { version = "0.1.0", path = "../tracker-core" }
torrust-tracker-udp-core = { version = "0.1.0", path = "../udp-core" }
derive_more = { version = "2", features = [ "as_ref", "constructor", "from" ] }
futures = "0"
futures-util = "0"
ringbuf = "0"
serde = "1.0.219"
thiserror = "2"
tokio = { version = "1", features = [ "macros", "net", "rt-multi-thread", "signal", "sync" ] }
tokio-util = "0.7.15"
torrust-server-lib = "0.1.0"
torrust-clock = "3.0.0"
torrust-tracker-configuration = { version = "3.0.0", path = "../configuration" }
torrust-tracker-events = { version = "0.1.0", path = "../events" }
torrust-metrics = "0.1.0"
torrust-net-primitives = "0.1.0"
torrust-tracker-primitives = { version = "3.0.0", path = "../primitives" }
torrust-tracker-swarm-coordination-registry = { version = "0.1.0", path = "../swarm-coordination-registry" }
tracing = "0"
url = { version = "2", features = [ "serde" ] }
async-trait = "0"
uuid = { version = "1", features = [ "v4" ] }
zerocopy = "0.8"
socket2 = "0.6.4"
[dev-dependencies]
mockall = "0"
rand = "0.9"
torrust-tracker-test-helpers = { version = "3.0.0", path = "../test-helpers" }