diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 15cf5f46a..174f9af8d 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -4172,9 +4172,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.4.1" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" +checksum = "88ad59a7560b41a70d191093a945f0b87bc1deeda46fb237479708a1d6b6cdfc" dependencies = [ "getrandom", "serde", diff --git a/rust/connlib/shared/Cargo.toml b/rust/connlib/shared/Cargo.toml index 2b50e483e..25f3e2c56 100644 --- a/rust/connlib/shared/Cargo.toml +++ b/rust/connlib/shared/Cargo.toml @@ -29,7 +29,7 @@ tokio-tungstenite = { version = "0.20", default-features = false, features = ["c tracing = { workspace = true } tracing-appender = "0.2" url = { version = "2.4.1", default-features = false } -uuid = { version = "1.4", default-features = false, features = ["std", "v4", "serde"] } +uuid = { version = "1.5", default-features = false, features = ["std", "v4", "serde"] } webrtc = { version = "0.8" } ring = "0.17" diff --git a/rust/relay/Cargo.toml b/rust/relay/Cargo.toml index 2e58a9d5f..2b12899f9 100644 --- a/rust/relay/Cargo.toml +++ b/rust/relay/Cargo.toml @@ -31,7 +31,7 @@ once_cell = "1.17.1" proptest = { version = "1.3.1", optional = true } test-strategy = "0.3.1" derive_more = { version = "0.99.17", features = ["from"] } -uuid = { version = "1.4.1", features = ["v4"] } +uuid = { version = "1.5.0", features = ["v4"] } phoenix-channel = { path = "../phoenix-channel" } url = "2.4.1" serde = { version = "1.0.189", features = ["derive"] }