diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 042e924c8..207d74e76 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -6938,9 +6938,9 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" [[package]] name = "url" -version = "2.5.0" +version = "2.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" +checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" dependencies = [ "form_urlencoded", "idna", diff --git a/rust/bin-shared/Cargo.toml b/rust/bin-shared/Cargo.toml index 052ec8562..c7ae18ee7 100644 --- a/rust/bin-shared/Cargo.toml +++ b/rust/bin-shared/Cargo.toml @@ -17,7 +17,7 @@ tracing = { workspace = true } tracing-log = "0.2" tracing-subscriber = { workspace = true, features = ["env-filter"] } tun = { workspace = true } -url = { version = "2.3.1", default-features = false } +url = { version = "2.5.2", default-features = false } [dev-dependencies] tokio = { workspace = true, features = ["macros"] } diff --git a/rust/connlib/clients/android/Cargo.toml b/rust/connlib/clients/android/Cargo.toml index 04c15bc8d..7d558735c 100644 --- a/rust/connlib/clients/android/Cargo.toml +++ b/rust/connlib/clients/android/Cargo.toml @@ -30,7 +30,7 @@ tracing = { workspace = true, features = ["std", "attributes"] } tracing-appender = "0.2" tracing-subscriber = { workspace = true } tun = { workspace = true } -url = "2.4.0" +url = "2.5.2" [target.'cfg(target_os = "android")'.dependencies] android_log-sys = "0.3.1" diff --git a/rust/connlib/clients/apple/Cargo.toml b/rust/connlib/clients/apple/Cargo.toml index 27a163b0c..9a01927be 100644 --- a/rust/connlib/clients/apple/Cargo.toml +++ b/rust/connlib/clients/apple/Cargo.toml @@ -27,7 +27,7 @@ tracing = { workspace = true } tracing-appender = "0.2" tracing-subscriber = "0.3" tun = { workspace = true } -url = "2.5.0" +url = "2.5.2" [target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies] oslog = { version = "0.2.0", default-features = false } diff --git a/rust/connlib/clients/shared/Cargo.toml b/rust/connlib/clients/shared/Cargo.toml index a4c976ec5..57ebdda92 100644 --- a/rust/connlib/clients/shared/Cargo.toml +++ b/rust/connlib/clients/shared/Cargo.toml @@ -26,7 +26,7 @@ tracing-appender = { version = "0.2.2" } tracing-stackdriver = { version = "0.10.0" } tracing-subscriber = { workspace = true, features = ["env-filter"] } tun = { workspace = true } -url = { version = "2.4.1", features = ["serde"] } +url = { version = "2.5.2", features = ["serde"] } [target.'cfg(target_os = "android")'.dependencies] tracing = { workspace = true, features = ["std", "attributes"] } diff --git a/rust/connlib/shared/Cargo.toml b/rust/connlib/shared/Cargo.toml index 58eaff35e..1befbf10c 100644 --- a/rust/connlib/shared/Cargo.toml +++ b/rust/connlib/shared/Cargo.toml @@ -32,7 +32,7 @@ serde_json = { version = "1.0", default-features = false, features = ["std"] } thiserror = { version = "1.0", default-features = false } tokio = { workspace = true, features = ["fs"] } tracing = { workspace = true } -url = { version = "2.4.1", default-features = false } +url = { version = "2.5.2", default-features = false } uuid = { version = "1.10", default-features = false, features = ["std", "v4", "serde"] } [dev-dependencies] diff --git a/rust/gateway/Cargo.toml b/rust/gateway/Cargo.toml index 0c4744e16..96596c5fa 100644 --- a/rust/gateway/Cargo.toml +++ b/rust/gateway/Cargo.toml @@ -33,7 +33,7 @@ tokio = { workspace = true, features = ["sync", "macros", "rt-multi-thread", "fs tokio-tungstenite = { version = "0.21", default-features = false, features = ["connect", "handshake", "rustls-tls-webpki-roots"] } tracing = { workspace = true } tracing-subscriber = "0.3.17" -url = { version = "2.4.1", default-features = false } +url = { version = "2.5.2", default-features = false } uuid = { version = "1.10.0", features = ["v4"] } [dev-dependencies] diff --git a/rust/gui-client/src-tauri/Cargo.toml b/rust/gui-client/src-tauri/Cargo.toml index 3176cd4e1..3268434f7 100644 --- a/rust/gui-client/src-tauri/Cargo.toml +++ b/rust/gui-client/src-tauri/Cargo.toml @@ -46,7 +46,7 @@ tracing = { workspace = true } tracing-log = "0.2" tracing-panic = "0.1.2" tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } -url = { version = "2.5.0", features = ["serde"] } +url = { version = "2.5.2", features = ["serde"] } uuid = { version = "1.10.0", features = ["v4"] } zip = { version = "2", features = ["deflate", "time"], default-features = false } diff --git a/rust/headless-client/Cargo.toml b/rust/headless-client/Cargo.toml index b7335b2bb..4bd5c8ca6 100644 --- a/rust/headless-client/Cargo.toml +++ b/rust/headless-client/Cargo.toml @@ -31,7 +31,7 @@ tokio-stream = "0.1.15" tokio-util = { version = "0.7.11", features = ["codec"] } tracing = { workspace = true } tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } -url = { version = "2.3.1", default-features = false } +url = { version = "2.5.2", default-features = false } uuid = { version = "1.10", default-features = false, features = ["std", "v4", "serde"] } [dev-dependencies] diff --git a/rust/phoenix-channel/Cargo.toml b/rust/phoenix-channel/Cargo.toml index c05898dd1..6ff3ea82a 100644 --- a/rust/phoenix-channel/Cargo.toml +++ b/rust/phoenix-channel/Cargo.toml @@ -20,7 +20,7 @@ thiserror = "1.0.61" tokio = { workspace = true, features = ["net", "time"] } tokio-tungstenite = { workspace = true, features = ["rustls-tls-webpki-roots"] } tracing = { workspace = true } -url = "2.4.1" +url = "2.5.2" uuid = { version = "1.10", default-features = false, features = ["std", "v4"] } [target.'cfg(target_os = "windows")'.dependencies] diff --git a/rust/relay/Cargo.toml b/rust/relay/Cargo.toml index be748da00..ebb991601 100644 --- a/rust/relay/Cargo.toml +++ b/rust/relay/Cargo.toml @@ -36,7 +36,7 @@ tracing-opentelemetry = "0.23.0" tracing-stackdriver = { version = "0.10.0", features = ["opentelemetry"] } tracing-subscriber = { workspace = true, features = ["env-filter", "json", "fmt"] } trackable = "1.3.0" -url = "2.4.1" +url = "2.5.2" uuid = { version = "1.10.0", features = ["v4"] } [dev-dependencies]