diff --git a/Cargo.lock b/Cargo.lock index df88fd2..d4e6f9d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1503,7 +1503,7 @@ dependencies = [ "async-trait", "axum 0.7.5", "backoff", - "base64 0.21.7", + "base64 0.22.1", "bincode", "bitvec", "byteorder", diff --git a/crates/librqbit/Cargo.toml b/crates/librqbit/Cargo.toml index ce22b0b..627ece3 100644 --- a/crates/librqbit/Cargo.toml +++ b/crates/librqbit/Cargo.toml @@ -48,7 +48,7 @@ tokio = { version = "1", features = [ "fs", "io-util", ] } -axum = { version = "0.7.4", optional = true } +axum = { version = "0.7", optional = true } tower-http = { version = "0.5", features = ["cors", "trace"], optional = true } tokio-stream = "0.1" serde = { version = "1", features = ["derive"] } @@ -81,7 +81,7 @@ url = "2" hex = "0.4" backoff = "0.4.0" dashmap = "5.5.3" -base64 = "0.21.5" +base64 = "0.22" serde_with = "3.4.0" tokio-util = { version = "0.7.10", features = ["io"] } bytes = "1.5.0" diff --git a/crates/upnp-serve/Cargo.toml b/crates/upnp-serve/Cargo.toml index 5a2ec7e..411327b 100644 --- a/crates/upnp-serve/Cargo.toml +++ b/crates/upnp-serve/Cargo.toml @@ -15,7 +15,7 @@ sha1-ring = ["librqbit-sha1-wrapper/sha1-ring"] [dependencies] anyhow = "1.0.86" -axum = { version = "0.7.5", features = ["tokio"] } +axum = { version = "0.7", features = ["tokio"] } tokio = { version = "1.39.3", features = ["full"] } tracing = "0.1.40" bstr = "1.10.0" diff --git a/desktop/src-tauri/Cargo.toml b/desktop/src-tauri/Cargo.toml index cfc64af..4efd073 100644 --- a/desktop/src-tauri/Cargo.toml +++ b/desktop/src-tauri/Cargo.toml @@ -24,7 +24,7 @@ librqbit = { path = "../../crates/librqbit", features = [ ] } tokio = { version = "1.34.0", features = ["rt-multi-thread"] } anyhow = "1.0.75" -base64 = "0.21.5" +base64 = "0.22" http = "1.0.0" directories = "5.0.1" tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }