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
32 lines (30 loc) · 1.37 KB
/
Copy pathCargo.toml
File metadata and controls
32 lines (30 loc) · 1.37 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
[package]
authors.workspace = true
description = "Tracker-specific runtime adapter for the REST API application layer."
documentation.workspace = true
edition.workspace = true
homepage.workspace = true
keywords = [ "adapter", "api", "bittorrent", "runtime", "torrust", "tracker" ]
license.workspace = true
name = "torrust-tracker-rest-api-runtime-adapter"
publish.workspace = true
readme = "README.md"
repository.workspace = true
rust-version.workspace = true
version = "0.1.0"
[dependencies]
torrust-tracker-configuration = { version = "3.0.0", path = "../configuration" }
torrust-tracker-rest-api-application = { version = "0.1.0", path = "../rest-api-application" }
torrust-tracker-rest-api-protocol = { version = "0.1.0", path = "../rest-api-protocol" }
torrust-tracker-core = { version = "0.1.0", path = "../tracker-core" }
torrust-tracker-primitives = { version = "3.0.0", path = "../primitives" }
torrust-tracker-http-core = { version = "0.1.0", path = "../http-core" }
torrust-tracker-udp-core = { version = "0.1.0", path = "../udp-core" }
torrust-tracker-udp-server = { version = "0.1.0", path = "../udp-server" }
torrust-tracker-swarm-coordination-registry = { version = "0.1.0", path = "../swarm-coordination-registry" }
torrust-metrics = "0.1.0"
torrust-info-hash = "=0.2.0"
async-trait = "0.1"
tokio = { version = "1", features = [ "sync" ] }
[dev-dependencies]
torrust-clock = "3.0.0"