diff --git a/rust/Cargo.lock b/rust/Cargo.lock index ac7a33d14..e52a2a331 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -6967,9 +6967,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.8.0" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" +checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314" dependencies = [ "getrandom 0.2.12", "serde", diff --git a/rust/bin-shared/Cargo.toml b/rust/bin-shared/Cargo.toml index 604dccf6c..052ec8562 100644 --- a/rust/bin-shared/Cargo.toml +++ b/rust/bin-shared/Cargo.toml @@ -30,7 +30,7 @@ libc = "0.2" [target.'cfg(target_os = "windows")'.dependencies] wintun = "0.4.0" -uuid = { version = "1.7.0", features = ["v4"] } +uuid = { version = "1.10.0", features = ["v4"] } [target.'cfg(windows)'.dependencies.windows] version = "0.57.0" diff --git a/rust/connlib/shared/Cargo.toml b/rust/connlib/shared/Cargo.toml index 805309f87..58eaff35e 100644 --- a/rust/connlib/shared/Cargo.toml +++ b/rust/connlib/shared/Cargo.toml @@ -33,7 +33,7 @@ thiserror = { version = "1.0", default-features = false } tokio = { workspace = true, features = ["fs"] } tracing = { workspace = true } url = { version = "2.4.1", default-features = false } -uuid = { version = "1.7", default-features = false, features = ["std", "v4", "serde"] } +uuid = { version = "1.10", default-features = false, features = ["std", "v4", "serde"] } [dev-dependencies] tokio = { version = "1.38", features = ["macros", "rt"] } diff --git a/rust/gateway/Cargo.toml b/rust/gateway/Cargo.toml index 91cd43cdf..0c4744e16 100644 --- a/rust/gateway/Cargo.toml +++ b/rust/gateway/Cargo.toml @@ -34,7 +34,7 @@ tokio-tungstenite = { version = "0.21", default-features = false, features = ["c tracing = { workspace = true } tracing-subscriber = "0.3.17" url = { version = "2.4.1", default-features = false } -uuid = { version = "1.7.0", features = ["v4"] } +uuid = { version = "1.10.0", features = ["v4"] } [dev-dependencies] serde_json = { version = "1.0", default-features = false, features = ["std"] } diff --git a/rust/gui-client/src-tauri/Cargo.toml b/rust/gui-client/src-tauri/Cargo.toml index 142605d29..3176cd4e1 100644 --- a/rust/gui-client/src-tauri/Cargo.toml +++ b/rust/gui-client/src-tauri/Cargo.toml @@ -47,7 +47,7 @@ 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"] } -uuid = { version = "1.7.0", features = ["v4"] } +uuid = { version = "1.10.0", features = ["v4"] } zip = { version = "2", features = ["deflate", "time"], default-features = false } [dependencies.keyring] diff --git a/rust/headless-client/Cargo.toml b/rust/headless-client/Cargo.toml index 6c01ee541..7f670d845 100644 --- a/rust/headless-client/Cargo.toml +++ b/rust/headless-client/Cargo.toml @@ -32,7 +32,7 @@ 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 } -uuid = { version = "1.7", default-features = false, features = ["std", "v4", "serde"] } +uuid = { version = "1.10", default-features = false, features = ["std", "v4", "serde"] } [dev-dependencies] tempfile = "3.10.1" diff --git a/rust/phoenix-channel/Cargo.toml b/rust/phoenix-channel/Cargo.toml index 27ef708b1..c05898dd1 100644 --- a/rust/phoenix-channel/Cargo.toml +++ b/rust/phoenix-channel/Cargo.toml @@ -21,7 +21,7 @@ tokio = { workspace = true, features = ["net", "time"] } tokio-tungstenite = { workspace = true, features = ["rustls-tls-webpki-roots"] } tracing = { workspace = true } url = "2.4.1" -uuid = { version = "1.7", default-features = false, features = ["std", "v4"] } +uuid = { version = "1.10", default-features = false, features = ["std", "v4"] } [target.'cfg(target_os = "windows")'.dependencies] hostname = "0.4.0" diff --git a/rust/relay/Cargo.toml b/rust/relay/Cargo.toml index 2b6be6b3e..be748da00 100644 --- a/rust/relay/Cargo.toml +++ b/rust/relay/Cargo.toml @@ -37,7 +37,7 @@ 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" -uuid = { version = "1.7.0", features = ["v4"] } +uuid = { version = "1.10.0", features = ["v4"] } [dev-dependencies] difference = "2.0.0"