From 9c03c3cc41df32a8570d870d4afc7839d890da27 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 May 2023 09:01:13 +0000 Subject: [PATCH] chore: bump uuid from 1.3.2 to 1.3.3 (#128) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps uuid from 1.3.2 to 1.3.3. Release notes Sourced from uuid's releases. 1.3.3 What's Changed Use sha hash for checkout action and remove others by @​KodrAus in uuid-rs/uuid#671 Hard deprecate Timestamp::to_unix_nanos by @​KodrAus in uuid-rs/uuid#673 Prepare for 1.3.3 release by @​KodrAus in uuid-rs/uuid#674 Full Changelog: uuid-rs/uuid@1.3.2...1.3.3 Commits 2cfe9f1 Merge pull request #674 from uuid-rs/cargo/1.3.3 2bbbb74 prepare for 1.3.3 release 534691e Merge pull request #673 from uuid-rs/chore/hard-deprecation 147d4b3 update build agents d89c69d hard deprecate Timestamp::to_unix_nanos 6d22d0c Merge pull request #671 from uuid-rs/ci/cleanups 0536908 use sha hash for checkout action and remove others See full diff in compare view Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase. Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: @dependabot rebase will rebase this PR @dependabot recreate will recreate this PR, overwriting any edits that have been made to it @dependabot merge will merge this PR after your CI passes on it @dependabot squash and merge will squash and merge this PR after your CI passes on it @dependabot cancel merge will cancel a previously requested merge and block automerging @dependabot reopen will reopen this PR if it is closed @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) --- Cargo.lock | 4 ++-- examples/test-api/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 51abd06..067e9e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2412,9 +2412,9 @@ dependencies = [ [[package]] name = "uuid" -version = "1.3.2" +version = "1.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4dad5567ad0cf5b760e5665964bec1b47dfd077ba8a2544b513f3556d3d239a2" +checksum = "345444e32442451b267fc254ae85a209c64be56d2890e601a0c37ff0c3c5ecd2" dependencies = [ "getrandom", ] diff --git a/examples/test-api/Cargo.toml b/examples/test-api/Cargo.toml index 1577c27..29c8bd8 100644 --- a/examples/test-api/Cargo.toml +++ b/examples/test-api/Cargo.toml @@ -11,4 +11,4 @@ rand = "0.8.5" rocket = {version = "0.5.0-rc.3", features = ["json"]} serde = {version = "1.0.163", features = ["derive"]} serde_json = "1.0.96" -uuid = {version = "1.3.2", features = ["v4"]} +uuid = {version = "1.3.3", features = ["v4"]}