|
| 1 | +[package] |
| 2 | +authors.workspace = true |
| 3 | +description = "The Torrust Bittorrent UDP tracker." |
| 4 | +documentation.workspace = true |
| 5 | +edition.workspace = true |
| 6 | +homepage.workspace = true |
| 7 | +keywords = ["axum", "bittorrent", "server", "torrust", "tracker", "udp"] |
| 8 | +license.workspace = true |
| 9 | +name = "torrust-udp-tracker-server" |
| 10 | +publish.workspace = true |
| 11 | +readme = "README.md" |
| 12 | +repository.workspace = true |
| 13 | +rust-version.workspace = true |
| 14 | +version.workspace = true |
| 15 | + |
| 16 | +[dependencies] |
| 17 | +aquatic_udp_protocol = "0" |
| 18 | +bittorrent-primitives = "0.1.0" |
| 19 | +bittorrent-tracker-client = { version = "3.0.0-develop", path = "../tracker-client" } |
| 20 | +bittorrent-tracker-core = { version = "3.0.0-develop", path = "../tracker-core" } |
| 21 | +bittorrent-udp-tracker-core = { version = "3.0.0-develop", path = "../udp-tracker-core" } |
| 22 | +derive_more = { version = "2", features = ["as_ref", "constructor", "from"] } |
| 23 | +futures = "0" |
| 24 | +futures-util = "0" |
| 25 | +ringbuf = "0" |
| 26 | +thiserror = "2" |
| 27 | +tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] } |
| 28 | +torrust-server-lib = { version = "3.0.0-develop", path = "../server-lib" } |
| 29 | +torrust-tracker-clock = { version = "3.0.0-develop", path = "../clock" } |
| 30 | +torrust-tracker-configuration = { version = "3.0.0-develop", path = "../configuration" } |
| 31 | +torrust-tracker-located-error = { version = "3.0.0-develop", path = "../located-error" } |
| 32 | +torrust-tracker-primitives = { version = "3.0.0-develop", path = "../primitives" } |
| 33 | +tracing = "0" |
| 34 | +url = { version = "2", features = ["serde"] } |
| 35 | +uuid = { version = "1", features = ["v4"] } |
| 36 | +zerocopy = "0.7" |
| 37 | + |
| 38 | +[dev-dependencies] |
| 39 | +local-ip-address = "0" |
| 40 | +mockall = "0" |
| 41 | +torrust-tracker-test-helpers = { version = "3.0.0-develop", path = "../test-helpers" } |
0 commit comments