Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 28 additions & 28 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 17 additions & 17 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ license = "AGPL-3.0-only"
publish = true
repository = "https://github.com/torrust/torrust-tracker"
rust-version = "1.72"
version = "3.0.0-develop"
version = "4.0.0-rc.1-develop"

[dependencies]
anyhow = "1"
axum-server = { version = "0", features = ["tls-rustls-no-provider"] }
bittorrent-http-tracker-core = { version = "3.0.0-develop", path = "packages/http-tracker-core" }
bittorrent-tracker-core = { version = "3.0.0-develop", path = "packages/tracker-core" }
bittorrent-udp-tracker-core = { version = "3.0.0-develop", path = "packages/udp-tracker-core" }
bittorrent-http-tracker-core = { version = "4.0.0-rc.1-develop", path = "packages/http-tracker-core" }
bittorrent-tracker-core = { version = "4.0.0-rc.1-develop", path = "packages/tracker-core" }
bittorrent-udp-tracker-core = { version = "4.0.0-rc.1-develop", path = "packages/udp-tracker-core" }
chrono = { version = "0", default-features = false, features = ["clock"] }
clap = { version = "4", features = ["derive", "env"] }
rand = "0"
Expand All @@ -48,26 +48,26 @@ serde_json = { version = "1", features = ["preserve_order"] }
thiserror = "2.0.12"
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] }
tokio-util = "0.7.15"
torrust-axum-health-check-api-server = { version = "3.0.0-develop", path = "packages/axum-health-check-api-server" }
torrust-axum-http-tracker-server = { version = "3.0.0-develop", path = "packages/axum-http-tracker-server" }
torrust-axum-rest-tracker-api-server = { version = "3.0.0-develop", path = "packages/axum-rest-tracker-api-server" }
torrust-axum-server = { version = "3.0.0-develop", path = "packages/axum-server" }
torrust-rest-tracker-api-core = { version = "3.0.0-develop", path = "packages/rest-tracker-api-core" }
torrust-server-lib = { version = "3.0.0-develop", path = "packages/server-lib" }
torrust-tracker-clock = { version = "3.0.0-develop", path = "packages/clock" }
torrust-tracker-configuration = { version = "3.0.0-develop", path = "packages/configuration" }
torrust-tracker-swarm-coordination-registry = { version = "3.0.0-develop", path = "packages/swarm-coordination-registry" }
torrust-udp-tracker-server = { version = "3.0.0-develop", path = "packages/udp-tracker-server" }
torrust-axum-health-check-api-server = { version = "4.0.0-rc.1-develop", path = "packages/axum-health-check-api-server" }
torrust-axum-http-tracker-server = { version = "4.0.0-rc.1-develop", path = "packages/axum-http-tracker-server" }
torrust-axum-rest-tracker-api-server = { version = "4.0.0-rc.1-develop", path = "packages/axum-rest-tracker-api-server" }
torrust-axum-server = { version = "4.0.0-rc.1-develop", path = "packages/axum-server" }
torrust-rest-tracker-api-core = { version = "4.0.0-rc.1-develop", path = "packages/rest-tracker-api-core" }
torrust-server-lib = { version = "4.0.0-rc.1-develop", path = "packages/server-lib" }
torrust-tracker-clock = { version = "4.0.0-rc.1-develop", path = "packages/clock" }
torrust-tracker-configuration = { version = "4.0.0-rc.1-develop", path = "packages/configuration" }
torrust-tracker-swarm-coordination-registry = { version = "4.0.0-rc.1-develop", path = "packages/swarm-coordination-registry" }
torrust-udp-tracker-server = { version = "4.0.0-rc.1-develop", path = "packages/udp-tracker-server" }
tracing = "0"
tracing-subscriber = { version = "0", features = ["json"] }

[dev-dependencies]
bittorrent-primitives = "0.1.0"
bittorrent-tracker-client = { version = "3.0.0-develop", path = "packages/tracker-client" }
bittorrent-tracker-client = { version = "4.0.0-rc.1-develop", path = "packages/tracker-client" }
local-ip-address = "0"
mockall = "0"
torrust-rest-tracker-api-client = { version = "3.0.0-develop", path = "packages/rest-tracker-api-client" }
torrust-tracker-test-helpers = { version = "3.0.0-develop", path = "packages/test-helpers" }
torrust-rest-tracker-api-client = { version = "4.0.0-rc.1-develop", path = "packages/rest-tracker-api-client" }
torrust-tracker-test-helpers = { version = "4.0.0-rc.1-develop", path = "packages/test-helpers" }

[workspace]
members = ["console/tracker-client", "packages/torrent-repository-benchmarking"]
Expand Down
4 changes: 2 additions & 2 deletions console/tracker-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ version.workspace = true
anyhow = "1"
aquatic_udp_protocol = "0"
bittorrent-primitives = "0.1.0"
bittorrent-tracker-client = { version = "3.0.0-develop", path = "../../packages/tracker-client" }
bittorrent-tracker-client = { version = "4.0.0-rc.1-develop", path = "../../packages/tracker-client" }
clap = { version = "4", features = ["derive", "env"] }
futures = "0"
hex-literal = "1"
Expand All @@ -30,7 +30,7 @@ serde_bytes = "0"
serde_json = { version = "1", features = ["preserve_order"] }
thiserror = "2"
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] }
torrust-tracker-configuration = { version = "3.0.0-develop", path = "../../packages/configuration" }
torrust-tracker-configuration = { version = "4.0.0-rc.1-develop", path = "../../packages/configuration" }
tracing = "0"
tracing-subscriber = { version = "0", features = ["json"] }
url = { version = "2", features = ["serde"] }
Expand Down
20 changes: 10 additions & 10 deletions packages/axum-health-check-api-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,20 @@ hyper = "1"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["preserve_order"] }
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] }
torrust-axum-server = { version = "3.0.0-develop", path = "../axum-server" }
torrust-server-lib = { version = "3.0.0-develop", path = "../server-lib" }
torrust-tracker-configuration = { version = "3.0.0-develop", path = "../configuration" }
torrust-tracker-primitives = { version = "3.0.0-develop", path = "../primitives" }
torrust-axum-server = { version = "4.0.0-rc.1-develop", path = "../axum-server" }
torrust-server-lib = { version = "4.0.0-rc.1-develop", path = "../server-lib" }
torrust-tracker-configuration = { version = "4.0.0-rc.1-develop", path = "../configuration" }
torrust-tracker-primitives = { version = "4.0.0-rc.1-develop", path = "../primitives" }
tower-http = { version = "0", features = ["compression-full", "cors", "propagate-header", "request-id", "trace"] }
tracing = "0"
url = "2.5.4"

[dev-dependencies]
reqwest = { version = "0", features = ["json"] }
torrust-axum-health-check-api-server = { version = "3.0.0-develop", path = "../axum-health-check-api-server" }
torrust-axum-http-tracker-server = { version = "3.0.0-develop", path = "../axum-http-tracker-server" }
torrust-axum-rest-tracker-api-server = { version = "3.0.0-develop", path = "../axum-rest-tracker-api-server" }
torrust-tracker-clock = { version = "3.0.0-develop", path = "../clock" }
torrust-tracker-test-helpers = { version = "3.0.0-develop", path = "../test-helpers" }
torrust-udp-tracker-server = { version = "3.0.0-develop", path = "../udp-tracker-server" }
torrust-axum-health-check-api-server = { version = "4.0.0-rc.1-develop", path = "../axum-health-check-api-server" }
torrust-axum-http-tracker-server = { version = "4.0.0-rc.1-develop", path = "../axum-http-tracker-server" }
torrust-axum-rest-tracker-api-server = { version = "4.0.0-rc.1-develop", path = "../axum-rest-tracker-api-server" }
torrust-tracker-clock = { version = "4.0.0-rc.1-develop", path = "../clock" }
torrust-tracker-test-helpers = { version = "4.0.0-rc.1-develop", path = "../test-helpers" }
torrust-udp-tracker-server = { version = "4.0.0-rc.1-develop", path = "../udp-tracker-server" }
tracing-subscriber = { version = "0", features = ["json"] }
24 changes: 12 additions & 12 deletions packages/axum-http-tracker-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,23 @@ aquatic_udp_protocol = "0"
axum = { version = "0", features = ["macros"] }
axum-client-ip = "0"
axum-server = { version = "0", features = ["tls-rustls-no-provider"] }
bittorrent-http-tracker-core = { version = "3.0.0-develop", path = "../http-tracker-core" }
bittorrent-http-tracker-protocol = { version = "3.0.0-develop", path = "../http-protocol" }
bittorrent-http-tracker-core = { version = "4.0.0-rc.1-develop", path = "../http-tracker-core" }
bittorrent-http-tracker-protocol = { version = "4.0.0-rc.1-develop", path = "../http-protocol" }
bittorrent-primitives = "0.1.0"
bittorrent-tracker-core = { version = "3.0.0-develop", path = "../tracker-core" }
bittorrent-tracker-core = { version = "4.0.0-rc.1-develop", path = "../tracker-core" }
derive_more = { version = "2", features = ["as_ref", "constructor", "from"] }
futures = "0"
hyper = "1"
reqwest = { version = "0", features = ["json"] }
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] }
tokio-util = "0.7.15"
torrust-axum-server = { version = "3.0.0-develop", path = "../axum-server" }
torrust-server-lib = { version = "3.0.0-develop", path = "../server-lib" }
torrust-tracker-clock = { version = "3.0.0-develop", path = "../clock" }
torrust-tracker-configuration = { version = "3.0.0-develop", path = "../configuration" }
torrust-tracker-primitives = { version = "3.0.0-develop", path = "../primitives" }
torrust-tracker-swarm-coordination-registry = { version = "3.0.0-develop", path = "../swarm-coordination-registry" }
torrust-axum-server = { version = "4.0.0-rc.1-develop", path = "../axum-server" }
torrust-server-lib = { version = "4.0.0-rc.1-develop", path = "../server-lib" }
torrust-tracker-clock = { version = "4.0.0-rc.1-develop", path = "../clock" }
torrust-tracker-configuration = { version = "4.0.0-rc.1-develop", path = "../configuration" }
torrust-tracker-primitives = { version = "4.0.0-rc.1-develop", path = "../primitives" }
torrust-tracker-swarm-coordination-registry = { version = "4.0.0-rc.1-develop", path = "../swarm-coordination-registry" }
tower = { version = "0", features = ["timeout"] }
tower-http = { version = "0", features = ["compression-full", "cors", "propagate-header", "request-id", "trace"] }
tracing = "0"
Expand All @@ -46,8 +46,8 @@ rand = "0"
serde_bencode = "0"
serde_bytes = "0"
serde_repr = "0"
torrust-tracker-clock = { version = "3.0.0-develop", path = "../clock" }
torrust-tracker-events = { version = "3.0.0-develop", path = "../events" }
torrust-tracker-test-helpers = { version = "3.0.0-develop", path = "../test-helpers" }
torrust-tracker-clock = { version = "4.0.0-rc.1-develop", path = "../clock" }
torrust-tracker-events = { version = "4.0.0-rc.1-develop", path = "../events" }
torrust-tracker-test-helpers = { version = "4.0.0-rc.1-develop", path = "../test-helpers" }
uuid = { version = "1", features = ["v4"] }
zerocopy = "0.7"
Loading
Loading