Skip to content

Commit 7d21b1f

Browse files
committed
develop: bump to version 4.0.0-rc.1-develop
1 parent 4396ec7 commit 7d21b1f

File tree

23 files changed

+161
-161
lines changed

23 files changed

+161
-161
lines changed

Cargo.lock

Lines changed: 28 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ license = "AGPL-3.0-only"
3030
publish = true
3131
repository = "https://github.com/torrust/torrust-tracker"
3232
rust-version = "1.72"
33-
version = "3.0.0-develop"
33+
version = "4.0.0-rc.1-develop"
3434

3535
[dependencies]
3636
anyhow = "1"
3737
axum-server = { version = "0", features = ["tls-rustls-no-provider"] }
38-
bittorrent-http-tracker-core = { version = "3.0.0-develop", path = "packages/http-tracker-core" }
39-
bittorrent-tracker-core = { version = "3.0.0-develop", path = "packages/tracker-core" }
40-
bittorrent-udp-tracker-core = { version = "3.0.0-develop", path = "packages/udp-tracker-core" }
38+
bittorrent-http-tracker-core = { version = "4.0.0-rc.1-develop", path = "packages/http-tracker-core" }
39+
bittorrent-tracker-core = { version = "4.0.0-rc.1-develop", path = "packages/tracker-core" }
40+
bittorrent-udp-tracker-core = { version = "4.0.0-rc.1-develop", path = "packages/udp-tracker-core" }
4141
chrono = { version = "0", default-features = false, features = ["clock"] }
4242
clap = { version = "4", features = ["derive", "env"] }
4343
rand = "0"
@@ -48,26 +48,26 @@ serde_json = { version = "1", features = ["preserve_order"] }
4848
thiserror = "2.0.12"
4949
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] }
5050
tokio-util = "0.7.15"
51-
torrust-axum-health-check-api-server = { version = "3.0.0-develop", path = "packages/axum-health-check-api-server" }
52-
torrust-axum-http-tracker-server = { version = "3.0.0-develop", path = "packages/axum-http-tracker-server" }
53-
torrust-axum-rest-tracker-api-server = { version = "3.0.0-develop", path = "packages/axum-rest-tracker-api-server" }
54-
torrust-axum-server = { version = "3.0.0-develop", path = "packages/axum-server" }
55-
torrust-rest-tracker-api-core = { version = "3.0.0-develop", path = "packages/rest-tracker-api-core" }
56-
torrust-server-lib = { version = "3.0.0-develop", path = "packages/server-lib" }
57-
torrust-tracker-clock = { version = "3.0.0-develop", path = "packages/clock" }
58-
torrust-tracker-configuration = { version = "3.0.0-develop", path = "packages/configuration" }
59-
torrust-tracker-swarm-coordination-registry = { version = "3.0.0-develop", path = "packages/swarm-coordination-registry" }
60-
torrust-udp-tracker-server = { version = "3.0.0-develop", path = "packages/udp-tracker-server" }
51+
torrust-axum-health-check-api-server = { version = "4.0.0-rc.1-develop", path = "packages/axum-health-check-api-server" }
52+
torrust-axum-http-tracker-server = { version = "4.0.0-rc.1-develop", path = "packages/axum-http-tracker-server" }
53+
torrust-axum-rest-tracker-api-server = { version = "4.0.0-rc.1-develop", path = "packages/axum-rest-tracker-api-server" }
54+
torrust-axum-server = { version = "4.0.0-rc.1-develop", path = "packages/axum-server" }
55+
torrust-rest-tracker-api-core = { version = "4.0.0-rc.1-develop", path = "packages/rest-tracker-api-core" }
56+
torrust-server-lib = { version = "4.0.0-rc.1-develop", path = "packages/server-lib" }
57+
torrust-tracker-clock = { version = "4.0.0-rc.1-develop", path = "packages/clock" }
58+
torrust-tracker-configuration = { version = "4.0.0-rc.1-develop", path = "packages/configuration" }
59+
torrust-tracker-swarm-coordination-registry = { version = "4.0.0-rc.1-develop", path = "packages/swarm-coordination-registry" }
60+
torrust-udp-tracker-server = { version = "4.0.0-rc.1-develop", path = "packages/udp-tracker-server" }
6161
tracing = "0"
6262
tracing-subscriber = { version = "0", features = ["json"] }
6363

6464
[dev-dependencies]
6565
bittorrent-primitives = "0.1.0"
66-
bittorrent-tracker-client = { version = "3.0.0-develop", path = "packages/tracker-client" }
66+
bittorrent-tracker-client = { version = "4.0.0-rc.1-develop", path = "packages/tracker-client" }
6767
local-ip-address = "0"
6868
mockall = "0"
69-
torrust-rest-tracker-api-client = { version = "3.0.0-develop", path = "packages/rest-tracker-api-client" }
70-
torrust-tracker-test-helpers = { version = "3.0.0-develop", path = "packages/test-helpers" }
69+
torrust-rest-tracker-api-client = { version = "4.0.0-rc.1-develop", path = "packages/rest-tracker-api-client" }
70+
torrust-tracker-test-helpers = { version = "4.0.0-rc.1-develop", path = "packages/test-helpers" }
7171

7272
[workspace]
7373
members = ["console/tracker-client", "packages/torrent-repository-benchmarking"]

console/tracker-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ version.workspace = true
1818
anyhow = "1"
1919
aquatic_udp_protocol = "0"
2020
bittorrent-primitives = "0.1.0"
21-
bittorrent-tracker-client = { version = "3.0.0-develop", path = "../../packages/tracker-client" }
21+
bittorrent-tracker-client = { version = "4.0.0-rc.1-develop", path = "../../packages/tracker-client" }
2222
clap = { version = "4", features = ["derive", "env"] }
2323
futures = "0"
2424
hex-literal = "1"
@@ -30,7 +30,7 @@ serde_bytes = "0"
3030
serde_json = { version = "1", features = ["preserve_order"] }
3131
thiserror = "2"
3232
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] }
33-
torrust-tracker-configuration = { version = "3.0.0-develop", path = "../../packages/configuration" }
33+
torrust-tracker-configuration = { version = "4.0.0-rc.1-develop", path = "../../packages/configuration" }
3434
tracing = "0"
3535
tracing-subscriber = { version = "0", features = ["json"] }
3636
url = { version = "2", features = ["serde"] }

packages/axum-health-check-api-server/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,20 @@ hyper = "1"
2121
serde = { version = "1", features = ["derive"] }
2222
serde_json = { version = "1", features = ["preserve_order"] }
2323
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] }
24-
torrust-axum-server = { version = "3.0.0-develop", path = "../axum-server" }
25-
torrust-server-lib = { version = "3.0.0-develop", path = "../server-lib" }
26-
torrust-tracker-configuration = { version = "3.0.0-develop", path = "../configuration" }
27-
torrust-tracker-primitives = { version = "3.0.0-develop", path = "../primitives" }
24+
torrust-axum-server = { version = "4.0.0-rc.1-develop", path = "../axum-server" }
25+
torrust-server-lib = { version = "4.0.0-rc.1-develop", path = "../server-lib" }
26+
torrust-tracker-configuration = { version = "4.0.0-rc.1-develop", path = "../configuration" }
27+
torrust-tracker-primitives = { version = "4.0.0-rc.1-develop", path = "../primitives" }
2828
tower-http = { version = "0", features = ["compression-full", "cors", "propagate-header", "request-id", "trace"] }
2929
tracing = "0"
3030
url = "2.5.4"
3131

3232
[dev-dependencies]
3333
reqwest = { version = "0", features = ["json"] }
34-
torrust-axum-health-check-api-server = { version = "3.0.0-develop", path = "../axum-health-check-api-server" }
35-
torrust-axum-http-tracker-server = { version = "3.0.0-develop", path = "../axum-http-tracker-server" }
36-
torrust-axum-rest-tracker-api-server = { version = "3.0.0-develop", path = "../axum-rest-tracker-api-server" }
37-
torrust-tracker-clock = { version = "3.0.0-develop", path = "../clock" }
38-
torrust-tracker-test-helpers = { version = "3.0.0-develop", path = "../test-helpers" }
39-
torrust-udp-tracker-server = { version = "3.0.0-develop", path = "../udp-tracker-server" }
34+
torrust-axum-health-check-api-server = { version = "4.0.0-rc.1-develop", path = "../axum-health-check-api-server" }
35+
torrust-axum-http-tracker-server = { version = "4.0.0-rc.1-develop", path = "../axum-http-tracker-server" }
36+
torrust-axum-rest-tracker-api-server = { version = "4.0.0-rc.1-develop", path = "../axum-rest-tracker-api-server" }
37+
torrust-tracker-clock = { version = "4.0.0-rc.1-develop", path = "../clock" }
38+
torrust-tracker-test-helpers = { version = "4.0.0-rc.1-develop", path = "../test-helpers" }
39+
torrust-udp-tracker-server = { version = "4.0.0-rc.1-develop", path = "../udp-tracker-server" }
4040
tracing-subscriber = { version = "0", features = ["json"] }

packages/axum-http-tracker-server/Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,23 @@ aquatic_udp_protocol = "0"
1818
axum = { version = "0", features = ["macros"] }
1919
axum-client-ip = "0"
2020
axum-server = { version = "0", features = ["tls-rustls-no-provider"] }
21-
bittorrent-http-tracker-core = { version = "3.0.0-develop", path = "../http-tracker-core" }
22-
bittorrent-http-tracker-protocol = { version = "3.0.0-develop", path = "../http-protocol" }
21+
bittorrent-http-tracker-core = { version = "4.0.0-rc.1-develop", path = "../http-tracker-core" }
22+
bittorrent-http-tracker-protocol = { version = "4.0.0-rc.1-develop", path = "../http-protocol" }
2323
bittorrent-primitives = "0.1.0"
24-
bittorrent-tracker-core = { version = "3.0.0-develop", path = "../tracker-core" }
24+
bittorrent-tracker-core = { version = "4.0.0-rc.1-develop", path = "../tracker-core" }
2525
derive_more = { version = "2", features = ["as_ref", "constructor", "from"] }
2626
futures = "0"
2727
hyper = "1"
2828
reqwest = { version = "0", features = ["json"] }
2929
serde = { version = "1", features = ["derive"] }
3030
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] }
3131
tokio-util = "0.7.15"
32-
torrust-axum-server = { version = "3.0.0-develop", path = "../axum-server" }
33-
torrust-server-lib = { version = "3.0.0-develop", path = "../server-lib" }
34-
torrust-tracker-clock = { version = "3.0.0-develop", path = "../clock" }
35-
torrust-tracker-configuration = { version = "3.0.0-develop", path = "../configuration" }
36-
torrust-tracker-primitives = { version = "3.0.0-develop", path = "../primitives" }
37-
torrust-tracker-swarm-coordination-registry = { version = "3.0.0-develop", path = "../swarm-coordination-registry" }
32+
torrust-axum-server = { version = "4.0.0-rc.1-develop", path = "../axum-server" }
33+
torrust-server-lib = { version = "4.0.0-rc.1-develop", path = "../server-lib" }
34+
torrust-tracker-clock = { version = "4.0.0-rc.1-develop", path = "../clock" }
35+
torrust-tracker-configuration = { version = "4.0.0-rc.1-develop", path = "../configuration" }
36+
torrust-tracker-primitives = { version = "4.0.0-rc.1-develop", path = "../primitives" }
37+
torrust-tracker-swarm-coordination-registry = { version = "4.0.0-rc.1-develop", path = "../swarm-coordination-registry" }
3838
tower = { version = "0", features = ["timeout"] }
3939
tower-http = { version = "0", features = ["compression-full", "cors", "propagate-header", "request-id", "trace"] }
4040
tracing = "0"
@@ -46,8 +46,8 @@ rand = "0"
4646
serde_bencode = "0"
4747
serde_bytes = "0"
4848
serde_repr = "0"
49-
torrust-tracker-clock = { version = "3.0.0-develop", path = "../clock" }
50-
torrust-tracker-events = { version = "3.0.0-develop", path = "../events" }
51-
torrust-tracker-test-helpers = { version = "3.0.0-develop", path = "../test-helpers" }
49+
torrust-tracker-clock = { version = "4.0.0-rc.1-develop", path = "../clock" }
50+
torrust-tracker-events = { version = "4.0.0-rc.1-develop", path = "../events" }
51+
torrust-tracker-test-helpers = { version = "4.0.0-rc.1-develop", path = "../test-helpers" }
5252
uuid = { version = "1", features = ["v4"] }
5353
zerocopy = "0.7"

0 commit comments

Comments
 (0)