From dde2a117861f2281ca43c27d62cc56895f564d64 Mon Sep 17 00:00:00 2001 From: Nextest Bot Date: Mon, 20 Nov 2023 11:23:45 +0000 Subject: [PATCH] Update Rust crate uuid to 1.6.1 --- 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 d80539ee3a8..6094090ec24 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3378,9 +3378,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.5.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "88ad59a7560b41a70d191093a945f0b87bc1deeda46fb237479708a1d6b6cdfc" +checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" dependencies = [ "getrandom", ] diff --git a/nextest-runner/Cargo.toml b/nextest-runner/Cargo.toml index 7281a31490c..fd4e94af052 100644 --- a/nextest-runner/Cargo.toml +++ b/nextest-runner/Cargo.toml @@ -89,7 +89,7 @@ self_update = { version = "0.39.0", optional = true, default-features = false, f nextest-filtering = { version = "0.5.1", path = "../nextest-filtering" } nextest-metadata = { version = "0.9.2", path = "../nextest-metadata" } quick-junit = { version = "0.3.5", path = "../quick-junit" } -uuid = { version = "1.5.0", features = ["v4"] } +uuid = { version = "1.6.1", 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 d464dbd095d..d2785bb5f33 100644 --- a/quick-junit/Cargo.toml +++ b/quick-junit/Cargo.toml @@ -16,7 +16,7 @@ chrono = { version = "0.4.31", default-features = false, features = ["std"] } indexmap = "2.1.0" quick-xml = "0.31.0" thiserror = "1.0.50" -uuid = "1.5.0" +uuid = "1.6.1" nextest-workspace-hack = { version = "0.1", path = "../workspace-hack" } strip-ansi-escapes = "0.2.0" diff --git a/workspace-hack/Cargo.toml b/workspace-hack/Cargo.toml index 5d34dbd985d..20e1333b3b6 100644 --- a/workspace-hack/Cargo.toml +++ b/workspace-hack/Cargo.toml @@ -36,7 +36,7 @@ similar = { version = "2.3.0", features = ["inline", "unicode"] } target-spec = { version = "3.0.1", default-features = false, features = ["custom", "summaries"] } tokio = { version = "1.34.0", features = ["fs", "io-util", "macros", "process", "rt-multi-thread", "signal", "sync", "time", "tracing"] } twox-hash = { version = "1.6.3" } -uuid = { version = "1.5.0", features = ["v4"] } +uuid = { version = "1.6.1", features = ["v4"] } [build-dependencies] cc = { version = "1.0.83", default-features = false, features = ["parallel"] }