Skip to content
Merged
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
16 changes: 8 additions & 8 deletions Cargo.lock

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

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

[dependencies]
anyhow = "1"
Expand Down Expand Up @@ -69,12 +69,12 @@ serde_repr = "0"
serde_with = { version = "3", features = ["json"] }
thiserror = "1"
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] }
torrust-tracker-clock = { version = "3.0.0-rc.1", path = "packages/clock" }
torrust-tracker-configuration = { version = "3.0.0-rc.1", path = "packages/configuration" }
torrust-tracker-contrib-bencode = { version = "3.0.0-rc.1", path = "contrib/bencode" }
torrust-tracker-located-error = { version = "3.0.0-rc.1", path = "packages/located-error" }
torrust-tracker-primitives = { version = "3.0.0-rc.1", path = "packages/primitives" }
torrust-tracker-torrent-repository = { version = "3.0.0-rc.1", path = "packages/torrent-repository" }
torrust-tracker-clock = { version = "3.0.0", path = "packages/clock" }
torrust-tracker-configuration = { version = "3.0.0", path = "packages/configuration" }
torrust-tracker-contrib-bencode = { version = "3.0.0", path = "contrib/bencode" }
torrust-tracker-located-error = { version = "3.0.0", path = "packages/located-error" }
torrust-tracker-primitives = { version = "3.0.0", path = "packages/primitives" }
torrust-tracker-torrent-repository = { version = "3.0.0", path = "packages/torrent-repository" }
tower = { version = "0", features = ["timeout"] }
tower-http = { version = "0", features = ["compression-full", "cors", "propagate-header", "request-id", "trace"] }
trace = "0"
Expand All @@ -90,7 +90,7 @@ ignored = ["crossbeam-skiplist", "dashmap", "figment", "parking_lot", "serde_byt
[dev-dependencies]
local-ip-address = "0"
mockall = "0"
torrust-tracker-test-helpers = { version = "3.0.0-rc.1", path = "packages/test-helpers" }
torrust-tracker-test-helpers = { version = "3.0.0", path = "packages/test-helpers" }

[workspace]
members = [
Expand Down
2 changes: 1 addition & 1 deletion packages/clock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ version.workspace = true
chrono = { version = "0", default-features = false, features = ["clock"] }
lazy_static = "1"

torrust-tracker-primitives = { version = "3.0.0-rc.1", path = "../primitives" }
torrust-tracker-primitives = { version = "3.0.0", path = "../primitives" }

[dev-dependencies]
1 change: 0 additions & 1 deletion packages/clock/src/clock/stopped/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/// Trait for types that can be used as a timestamp clock stopped
/// at a given time.

#[allow(clippy::module_name_repetitions)]
pub struct StoppedClock {}

Expand Down
1 change: 0 additions & 1 deletion packages/clock/src/conv/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ pub fn convert_from_timestamp_to_datetime_utc(duration: DurationSinceUnixEpoch)
}

#[cfg(test)]

mod tests {
use chrono::DateTime;
use torrust_tracker_primitives::DurationSinceUnixEpoch;
Expand Down
2 changes: 1 addition & 1 deletion packages/configuration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ serde_json = { version = "1", features = ["preserve_order"] }
serde_with = "3"
thiserror = "1"
toml = "0"
torrust-tracker-located-error = { version = "3.0.0-rc.1", path = "../located-error" }
torrust-tracker-located-error = { version = "3.0.0", path = "../located-error" }
url = "2"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion packages/test-helpers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ version.workspace = true

[dependencies]
rand = "0"
torrust-tracker-configuration = { version = "3.0.0-rc.1", path = "../configuration" }
torrust-tracker-configuration = { version = "3.0.0", path = "../configuration" }
6 changes: 3 additions & 3 deletions packages/torrent-repository/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ dashmap = "6"
futures = "0"
parking_lot = "0"
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] }
torrust-tracker-clock = { version = "3.0.0-rc.1", path = "../clock" }
torrust-tracker-configuration = { version = "3.0.0-rc.1", path = "../configuration" }
torrust-tracker-primitives = { version = "3.0.0-rc.1", path = "../primitives" }
torrust-tracker-clock = { version = "3.0.0", path = "../clock" }
torrust-tracker-configuration = { version = "3.0.0", path = "../configuration" }
torrust-tracker-primitives = { version = "3.0.0", path = "../primitives" }
zerocopy = "0"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
//! ## Run with docker
//!
//! You can run the tracker with a pre-built docker image. Please refer to the
//! [tracker docker documentation](https://github.com/torrust/torrust-tracker/tree/develop/docker).
//! [tracker docker documentation](https://github.com/torrust/torrust-tracker/blob/develop/docs/containers.md).
//!
//! # Configuration
//!
Expand Down Expand Up @@ -214,7 +214,7 @@
//! of the `tracker.toml` file.
//!
//! The env var contains the same data as the `tracker.toml`. It's particularly
//! useful in you are [running the tracker with docker](https://github.com/torrust/torrust-tracker/tree/develop/docker).
//! useful in you are [running the tracker with docker](https://github.com/torrust/torrust-tracker/blob/develop/docs/containers.md).
//!
//! > NOTICE: The `TORRUST_TRACKER_CONFIG_TOML` env var has priority over the `tracker.toml` file.
//!
Expand Down