From 5fad48d5fbedf52d575b660b10df03acef6d1bd5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 13:36:59 -0800 Subject: [PATCH] Bump uuid from 1.6.1 to 1.7.0 (#699) Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.6.1 to 1.7.0. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.6.1...1.7.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 9691a73..b7e6fc9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2467,9 +2467,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", "serde", diff --git a/example-build/Cargo.toml b/example-build/Cargo.toml index 97efb7b..53aca38 100644 --- a/example-build/Cargo.toml +++ b/example-build/Cargo.toml @@ -11,7 +11,7 @@ reqwest = { version = "0.11.22", features = ["json", "stream"] } base64 = "0.21" rand = "0.8" serde = { version = "1.0", features = ["derive"] } -uuid = { version = "1.6", features = ["serde", "v4"] } +uuid = { version = "1.7", features = ["serde", "v4"] } [build-dependencies] prettyplease = "0.2.16" diff --git a/example-macro/Cargo.toml b/example-macro/Cargo.toml index de00c86..0cab152 100644 --- a/example-macro/Cargo.toml +++ b/example-macro/Cargo.toml @@ -10,4 +10,4 @@ progenitor = { path = "../progenitor" } reqwest = { version = "0.11.22", features = ["json", "stream"] } schemars = { version = "0.8.16", features = ["uuid1"] } serde = { version = "1.0", features = ["derive"] } -uuid = { version = "1.6", features = ["serde", "v4"] } +uuid = { version = "1.7", features = ["serde", "v4"] } diff --git a/example-wasm/Cargo.toml b/example-wasm/Cargo.toml index 412de87..3a7148a 100644 --- a/example-wasm/Cargo.toml +++ b/example-wasm/Cargo.toml @@ -9,7 +9,7 @@ progenitor-client = { path = "../progenitor-client" } reqwest = { version = "0.11.22", features = ["json", "stream"] } base64 = "0.21" serde = { version = "1.0", features = ["derive"] } -uuid = { version = "1.6", features = ["serde", "v4", "js"] } +uuid = { version = "1.7", features = ["serde", "v4", "js"] } [dev-dependencies] wasm-bindgen-test = "0.3.40" diff --git a/progenitor/Cargo.toml b/progenitor/Cargo.toml index b5f55c8..e5bf24b 100644 --- a/progenitor/Cargo.toml +++ b/progenitor/Cargo.toml @@ -25,5 +25,5 @@ regress = "0.7.1" reqwest = { version = "0.11.22", features = ["json", "stream"] } schemars = { version = "0.8.16", features = ["uuid1"] } serde = { version = "1.0", features = ["derive"] } -uuid = { version = "1.6", features = ["serde", "v4"] } +uuid = { version = "1.7", features = ["serde", "v4"] } tokio = "1.35.1"