From 10be94600789768e90053588f548aaac35f57f3b Mon Sep 17 00:00:00 2001 From: Nextest Bot Date: Fri, 19 Jan 2024 15:06:32 -0800 Subject: [PATCH] Update Rust crate uuid to 1.7.0 (#1234) --- 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 312de10ba59..e67571ed451 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3344,9 +3344,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", ] diff --git a/nextest-runner/Cargo.toml b/nextest-runner/Cargo.toml index 54262fd1f93..264a30b3a7c 100644 --- a/nextest-runner/Cargo.toml +++ b/nextest-runner/Cargo.toml @@ -93,7 +93,7 @@ self_update = { version = "0.39.0", optional = true, default-features = false, f nextest-filtering = { version = "0.7.1", path = "../nextest-filtering" } nextest-metadata = { version = "0.10.0", path = "../nextest-metadata" } quick-junit = { version = "0.3.5", path = "../quick-junit" } -uuid = { version = "1.6.1", features = ["v4"] } +uuid = { version = "1.7.0", features = ["v4"] } console-subscriber = { version = "0.2.0", optional = true } unicode-ident = "1.0.12" unicode-normalization = "0.1.22" diff --git a/quick-junit/Cargo.toml b/quick-junit/Cargo.toml index 1e1263015e8..98308616118 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.56" -uuid = "1.6.1" +uuid = "1.7.0" strip-ansi-escapes = "0.2.0" nextest-workspace-hack.workspace = true diff --git a/workspace-hack/Cargo.toml b/workspace-hack/Cargo.toml index 6207fdaa7dc..22564b3b4c5 100644 --- a/workspace-hack/Cargo.toml +++ b/workspace-hack/Cargo.toml @@ -35,7 +35,7 @@ serde_json = { version = "1.0.111", features = ["preserve_order", "unbounded_dep similar = { version = "2.3.0", features = ["inline", "unicode"] } tokio = { version = "1.35.1", features = ["fs", "io-util", "macros", "process", "rt-multi-thread", "signal", "sync", "time", "tracing"] } twox-hash = { version = "1.6.3" } -uuid = { version = "1.6.1", features = ["v4"] } +uuid = { version = "1.7.0", features = ["v4"] } [build-dependencies] cc = { version = "1.0.83", default-features = false, features = ["parallel"] }