From e922ca25b36b6509637f879524940896a0be395f Mon Sep 17 00:00:00 2001 From: Nextest Bot Date: Sat, 21 Oct 2023 16:56:38 -0700 Subject: [PATCH] Update Rust crate uuid to 1.5.0 (#1047) --- Cargo.lock | 4 ++-- nextest-runner/Cargo.toml | 2 +- quick-junit/Cargo.toml | 2 +- workspace-hack/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f3d4277f728..f8f5bef0c0a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3168,9 +3168,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", ] diff --git a/nextest-runner/Cargo.toml b/nextest-runner/Cargo.toml index 77ee190d3f6..18609bb8e6a 100644 --- a/nextest-runner/Cargo.toml +++ b/nextest-runner/Cargo.toml @@ -89,7 +89,7 @@ self_update = { version = "0.38.0", optional = true, default-features = false, f nextest-filtering = { version = "0.5.0", path = "../nextest-filtering" } nextest-metadata = { version = "0.9.2", path = "../nextest-metadata" } quick-junit = { version = "0.3.3", path = "../quick-junit" } -uuid = { version = "1.4.1", features = ["v4"] } +uuid = { version = "1.5.0", features = ["v4"] } nextest-workspace-hack = { version = "0.1", path = "../workspace-hack" } console-subscriber = { version = "0.2.0", optional = true } unicode-ident = "1.0.12" diff --git a/quick-junit/Cargo.toml b/quick-junit/Cargo.toml index a6d1238dc1b..670222f9569 100644 --- a/quick-junit/Cargo.toml +++ b/quick-junit/Cargo.toml @@ -16,7 +16,7 @@ chrono = "0.4.31" indexmap = "2.0.2" quick-xml = "0.30.0" thiserror = "1.0.50" -uuid = "1.4.1" +uuid = "1.5.0" nextest-workspace-hack = { version = "0.1", path = "../workspace-hack" } [dev-dependencies] diff --git a/workspace-hack/Cargo.toml b/workspace-hack/Cargo.toml index 3f0ae423982..d990e27734a 100644 --- a/workspace-hack/Cargo.toml +++ b/workspace-hack/Cargo.toml @@ -35,7 +35,7 @@ similar = { version = "2.3.0", features = ["inline", "unicode"] } target-spec = { version = "3.0.1", default-features = false, features = ["custom", "summaries"] } tokio = { version = "1.33.0", features = ["fs", "io-util", "macros", "process", "rt-multi-thread", "signal", "sync", "time", "tracing"] } twox-hash = { version = "1.6.3" } -uuid = { version = "1.4.1", features = ["v4"] } +uuid = { version = "1.5.0", features = ["v4"] } [build-dependencies] cc = { version = "1.0.83", default-features = false, features = ["parallel"] }