Skip to content

Commit

Permalink
Bumping version and forgotten changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Power2All committed Aug 31, 2023
1 parent 2834bfb commit 2fc671d
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 17 deletions.
17 changes: 13 additions & 4 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "torrust-axum"
version = "3.2.0"
name = "torrust-actix"
version = "3.2.1"
edition = "2021"
license = "AGPL-3.0"
authors = [
Expand Down Expand Up @@ -39,7 +39,7 @@ futures = "0.3.21"
futures-util = "0.3.28"
hex = "0.4.3"
include_dir = "0.7.2"
itertools = "0.10.5"
itertools = "0.11.0"
log = "0.4.17"
mime_guess = "2.0.4"
percent-encoding = "2.1.0"
Expand All @@ -50,7 +50,7 @@ rustls-pemfile = "1.0.2"
scc = "1.0.9"
serde = { version = "1.0.141", features = ["derive"] }
serde_json = "1.0.82"
sqlx = { version = "0.6.0", features = ["mysql", "postgres", "sqlite", "runtime-tokio-rustls"] }
sqlx = { version = "0.6.3", features = ["mysql", "postgres", "sqlite", "runtime-tokio-rustls"] }
thiserror = "1.0.31"
tokio = { version = "1.20.1", features = ["full"] }
toml = "0.7.3"
18 changes: 9 additions & 9 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ use std::net::SocketAddr;
use std::process::exit;
use std::time::Duration;

use torrust_axum::common::{tcp_check_host_and_port_used, udp_check_host_and_port_used};
use torrust_axum::config::{Configuration, DatabaseStructureConfig};
use torrust_axum::databases::DatabaseDrivers;
use torrust_axum::http_api::{http_api, https_api};
use torrust_axum::http_service::{http_service, https_service};
use torrust_axum::logging::setup_logging;
use torrust_axum::tracker::TorrentTracker;
use torrust_axum::tracker_objects::stats::StatsEvent;
use torrust_axum::udp_service::udp_service;
use torrust_actix::common::{tcp_check_host_and_port_used, udp_check_host_and_port_used};
use torrust_actix::config::{Configuration, DatabaseStructureConfig};
use torrust_actix::databases::DatabaseDrivers;
use torrust_actix::http_api::{http_api, https_api};
use torrust_actix::http_service::{http_service, https_service};
use torrust_actix::logging::setup_logging;
use torrust_actix::tracker::TorrentTracker;
use torrust_actix::tracker_objects::stats::StatsEvent;
use torrust_actix::udp_service::udp_service;

#[global_allocator]
static A: System = System;
Expand Down

0 comments on commit 2fc671d

Please sign in to comment.