From 676328a7d7b31fb34afc8c3c1c3efbfc21880f85 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jul 2023 15:41:19 +0000 Subject: [PATCH] build(deps): bump uuid from 1.3.3 to 1.4.1 in /protocol Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.3.3 to 1.4.1. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.3.3...1.4.1) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- protocol/Cargo.lock | 4 ++-- protocol/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/protocol/Cargo.lock b/protocol/Cargo.lock index 21e671c..c0008d9 100644 --- a/protocol/Cargo.lock +++ b/protocol/Cargo.lock @@ -692,9 +692,9 @@ checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0" [[package]] name = "uuid" -version = "1.3.3" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "345444e32442451b267fc254ae85a209c64be56d2890e601a0c37ff0c3c5ecd2" +checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" dependencies = [ "getrandom", "serde", diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index 861efcb..573647b 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -13,7 +13,7 @@ serde = {version="1.0", features=["derive"]} chrono = {version="0.4", features=["serde"]} enum-iterator = "1.4" protocol_types = {path="protocol_types"} -uuid = { version = "1.3.1", features = ["v4", "serde"] } +uuid = { version = "1.4.1", features = ["v4", "serde"] } [build-dependencies] protocol_types = {path="protocol_types"}