From 8d15f87bab5e04fc91b80a2be9df3c486bc504eb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Apr 2023 01:57:55 +0000 Subject: [PATCH] build(deps): bump uuid from 0.8.2 to 1.3.1 Bumps [uuid](https://github.com/uuid-rs/uuid) from 0.8.2 to 1.3.1. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/0.8.2...1.3.1) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 13 +++++++++++-- Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d0c5573..fe42220 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -138,7 +138,7 @@ checksum = "21a8531dd3a64fd1cfbe92fad4160bc2060489c6195fe847e045e5788f710bae" dependencies = [ "http", "rand", - "uuid", + "uuid 0.8.2", ] [[package]] @@ -290,7 +290,7 @@ dependencies = [ "rand", "requestty", "sha2", - "uuid", + "uuid 1.3.1", ] [[package]] @@ -610,6 +610,15 @@ dependencies = [ "sha1", ] +[[package]] +name = "uuid" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b55a3fef2a1e3b3a00ce878640918820d3c51081576ac657d23af9fc7928fdb" +dependencies = [ + "getrandom", +] + [[package]] name = "version_check" version = "0.9.4" diff --git a/Cargo.toml b/Cargo.toml index b759b2b..d26e643 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ edition = "2021" [dependencies] requestty = "0.2.1" indicatif = "0.16.2" -uuid = { version = "0.8.2", features = ["v4"] } +uuid = { version = "1.3.1", features = ["v4"] } md5 = "0.7.0" sha2 = "0.10.2" rand = "0.8.4"