diff --git a/rust/Cargo.lock b/rust/Cargo.lock index a46ae2dff..9051b6688 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -7350,9 +7350,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.6.1" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" +checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a" dependencies = [ "getrandom 0.2.12", "serde", diff --git a/rust/connlib/shared/Cargo.toml b/rust/connlib/shared/Cargo.toml index 25868c691..45e23c080 100644 --- a/rust/connlib/shared/Cargo.toml +++ b/rust/connlib/shared/Cargo.toml @@ -31,7 +31,7 @@ tokio-tungstenite = { version = "0.21", default-features = false, features = ["c tracing = { workspace = true } tracing-appender = "0.2" url = { version = "2.4.1", default-features = false } -uuid = { version = "1.5", default-features = false, features = ["std", "v4", "serde"] } +uuid = { version = "1.7", default-features = false, features = ["std", "v4", "serde"] } webrtc = { workspace = true } ring = "0.17" hickory-resolver = { workspace = true } diff --git a/rust/connlib/tunnel/Cargo.toml b/rust/connlib/tunnel/Cargo.toml index 6059ae50b..f145fc692 100644 --- a/rust/connlib/tunnel/Cargo.toml +++ b/rust/connlib/tunnel/Cargo.toml @@ -52,7 +52,7 @@ tracing-android = "0.2" # Windows tunnel dependencies [target.'cfg(target_os = "windows")'.dependencies] -uuid = { version = "1.5.0", features = ["v4"] } +uuid = { version = "1.7.0", features = ["v4"] } wintun = "0.4.0" # Windows Win32 API diff --git a/rust/gateway/Cargo.toml b/rust/gateway/Cargo.toml index a5470902e..b91e43878 100644 --- a/rust/gateway/Cargo.toml +++ b/rust/gateway/Cargo.toml @@ -28,7 +28,7 @@ tracing-subscriber = "0.3.17" url = { version = "2.4.1", default-features = false } webrtc = { workspace = true } domain = { workspace = true } -uuid = { version = "1.6.1", features = ["v4"] } +uuid = { version = "1.7.0", features = ["v4"] } [dev-dependencies] serde_json = { version = "1.0", default-features = false, features = ["std"] } diff --git a/rust/relay/Cargo.toml b/rust/relay/Cargo.toml index cded7dff6..48c4e87e9 100644 --- a/rust/relay/Cargo.toml +++ b/rust/relay/Cargo.toml @@ -31,7 +31,7 @@ once_cell = "1.17.1" proptest = { version = "1.4.0", optional = true } test-strategy = "0.3.1" derive_more = { version = "0.99.17", features = ["from"] } -uuid = { version = "1.5.0", features = ["v4"] } +uuid = { version = "1.7.0", features = ["v4"] } phoenix-channel = { path = "../phoenix-channel" } url = "2.4.1" serde = { version = "1.0.190", features = ["derive"] } diff --git a/rust/windows-client/src-tauri/Cargo.toml b/rust/windows-client/src-tauri/Cargo.toml old mode 100755 new mode 100644 index c9435b245..b7a68149a --- a/rust/windows-client/src-tauri/Cargo.toml +++ b/rust/windows-client/src-tauri/Cargo.toml @@ -39,7 +39,7 @@ tracing = { workspace = true } tracing-log = "0.2" tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } url = { version = "2.5.0", features = ["serde"] } -uuid = { version = "1.5.0", features = ["v4"] } +uuid = { version = "1.7.0", features = ["v4"] } tracing-panic = "0.1.1" zip = { version = "0.6.6", features = ["deflate", "time"], default-features = false } rand = "0.8.5"