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
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ rustup update # Update to latest stable
rustup toolchain install nightly # Required for docs generation
```

The project MSRV is **1.72**. The nightly toolchain is needed only for
The project MSRV is **1.85**. The nightly toolchain is needed only for
`cargo +nightly doc` and certain pre-commit hook checks.

## Step 3: Build
Expand Down
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
matchmakes peers and collects statistics, supporting the UDP, HTTP, and TLS socket types with
native IPv4/IPv6 support, private/whitelisted mode, and a management REST API.

- **Language**: Rust (edition 2021, MSRV 1.72)
- **Language**: Rust (edition 2024, MSRV 1.85)
Comment thread
josecelano marked this conversation as resolved.
- **License**: AGPL-3.0-only
- **Version**: 3.0.0-develop
- **Web framework**: [Axum](https://github.com/tokio-rs/axum)
Expand Down
105 changes: 56 additions & 49 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Comment thread
josecelano marked this conversation as resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ authors = [ "Nautilus Cyberneering <info@nautilus-cyberneering.de>, Mick van Dij
categories = [ "network-programming", "web-programming" ]
description = "A feature rich BitTorrent tracker."
documentation = "https://docs.rs/crate/torrust-tracker/"
edition = "2021"
edition = "2024"
homepage = "https://torrust.com/"
keywords = [ "bittorrent", "file-sharing", "peer-to-peer", "torrent", "tracker" ]
license = "AGPL-3.0-only"
publish = true
repository = "https://github.com/torrust/torrust-tracker"
rust-version = "1.72"
rust-version = "1.85"
version = "3.0.0-develop"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion console/tracker-client/src/console/clients/checker/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ use url::Url;
use super::config::Configuration;
use super::console::Console;
use super::error::{AppError, ConfigSource};
use super::monitor::udp::{run_monitor, MonitorUdpConfig, DEFAULT_INFO_HASH};
use super::monitor::udp::{DEFAULT_INFO_HASH, MonitorUdpConfig, run_monitor};
use super::service::Service;
use crate::console::clients::checker::config::parse_from_json;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use std::time::Duration;
use bittorrent_primitives::info_hash::InfoHash;
use bittorrent_tracker_client::http::client::responses::announce::Announce;
use bittorrent_tracker_client::http::client::responses::scrape;
use bittorrent_tracker_client::http::client::{requests, Client};
use bittorrent_tracker_client::http::client::{Client, requests};
use serde::Serialize;
use url::Url;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ use bittorrent_udp_tracker_protocol::TransactionId;
use serde::Serialize;
use url::Url;

use crate::console::clients::udp::checker::{AnnounceParams, Client};
use crate::console::clients::udp::Error;
use crate::console::clients::udp::checker::{AnnounceParams, Client};

#[derive(Debug, Clone, Serialize)]
pub struct Checks {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use super::printer::{Printer, CLEAR_SCREEN};
use super::printer::{CLEAR_SCREEN, Printer};

pub struct Console {}

Expand Down
Loading
Loading