diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 2dfc1e004..508ffdb94 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -3433,9 +3433,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.4.0" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d023da39d1fde5a8a3fe1f3e01ca9632ada0a63e9797de55a879d6e2236277be" +checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" dependencies = [ "getrandom 0.2.10", "serde", diff --git a/rust/connlib/libs/common/Cargo.toml b/rust/connlib/libs/common/Cargo.toml index 5556459cf..e1026122c 100644 --- a/rust/connlib/libs/common/Cargo.toml +++ b/rust/connlib/libs/common/Cargo.toml @@ -15,7 +15,7 @@ futures = { version = "0.3", default-features = false, features = ["std", "asyn futures-util = { version = "0.3", default-features = false, features = ["std", "async-await", "async-await-macro"] } tokio-tungstenite = { version = "0.19", default-features = false, features = ["connect", "handshake"] } webrtc = { version = "0.8" } -uuid = { version = "1.3", default-features = false, features = ["std", "v4", "serde"] } +uuid = { version = "1.4", default-features = false, features = ["std", "v4", "serde"] } thiserror = { version = "1.0", default-features = false } tracing = { version = "0.1", default-features = false, features = ["std", "attributes"] } serde_json = { version = "1.0", default-features = false, features = ["std"] } diff --git a/rust/relay/Cargo.toml b/rust/relay/Cargo.toml index eccb99e85..99be2296a 100644 --- a/rust/relay/Cargo.toml +++ b/rust/relay/Cargo.toml @@ -24,7 +24,7 @@ once_cell = "1.17.1" proptest = { version = "1.2.0", optional = true } test-strategy = "0.3.0" derive_more = { version = "0.99.17", features = ["from"] } -uuid = { version = "1.3.3", features = ["v4"] } +uuid = { version = "1.4.1", features = ["v4"] } phoenix-channel = { path = "../phoenix-channel" } url = "2.4.0" serde = { version = "1.0.171", features = ["derive"] }