From c07646d5960f12cd6abb60ce0af5263ad8a11f55 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Apr 2024 14:46:50 -0700 Subject: [PATCH] Bump uuid from 1.7.0 to 1.8.0 (#773) Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.7.0 to 1.8.0. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.7.0...1.8.0) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- example-build/Cargo.toml | 2 +- example-macro/Cargo.toml | 2 +- example-wasm/Cargo.toml | 2 +- progenitor/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index efb1fa8..83478f4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2502,9 +2502,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.7.0" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a" +checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" dependencies = [ "getrandom", "serde", diff --git a/example-build/Cargo.toml b/example-build/Cargo.toml index 84e64a2..f376e6c 100644 --- a/example-build/Cargo.toml +++ b/example-build/Cargo.toml @@ -11,7 +11,7 @@ reqwest = { version = "0.11.27", features = ["json", "stream"] } base64 = "0.22" rand = "0.8" serde = { version = "1.0", features = ["derive"] } -uuid = { version = "1.7", features = ["serde", "v4"] } +uuid = { version = "1.8", features = ["serde", "v4"] } [build-dependencies] prettyplease = "0.2.17" diff --git a/example-macro/Cargo.toml b/example-macro/Cargo.toml index dedfdc7..7953f6c 100644 --- a/example-macro/Cargo.toml +++ b/example-macro/Cargo.toml @@ -10,4 +10,4 @@ progenitor = { path = "../progenitor" } reqwest = { version = "0.11.27", features = ["json", "stream"] } schemars = { version = "0.8.16", features = ["uuid1"] } serde = { version = "1.0", features = ["derive"] } -uuid = { version = "1.7", features = ["serde", "v4"] } +uuid = { version = "1.8", features = ["serde", "v4"] } diff --git a/example-wasm/Cargo.toml b/example-wasm/Cargo.toml index b48b606..5dd9eed 100644 --- a/example-wasm/Cargo.toml +++ b/example-wasm/Cargo.toml @@ -9,7 +9,7 @@ progenitor-client = { path = "../progenitor-client" } reqwest = { version = "0.11.27", features = ["json", "stream"] } base64 = "0.22" serde = { version = "1.0", features = ["derive"] } -uuid = { version = "1.7", features = ["serde", "v4", "js"] } +uuid = { version = "1.8", features = ["serde", "v4", "js"] } [dev-dependencies] wasm-bindgen-test = "0.3.42" diff --git a/progenitor/Cargo.toml b/progenitor/Cargo.toml index 99cb302..46840c6 100644 --- a/progenitor/Cargo.toml +++ b/progenitor/Cargo.toml @@ -25,5 +25,5 @@ regress = "0.9.1" reqwest = { version = "0.11.27", features = ["json", "stream"] } schemars = { version = "0.8.16", features = ["uuid1"] } serde = { version = "1.0", features = ["derive"] } -uuid = { version = "1.7", features = ["serde", "v4"] } +uuid = { version = "1.8", features = ["serde", "v4"] } tokio = "1.36.0"