From 373ce242d2de3e576a9d5b1c0af26fa13c9862f2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Jul 2023 15:43:03 +0000 Subject: [PATCH] build(deps): bump uuid from 1.3.3 to 1.4.0 in /protocol Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.3.3 to 1.4.0. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.3.3...1.4.0) --- 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..a78bc4f 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.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "345444e32442451b267fc254ae85a209c64be56d2890e601a0c37ff0c3c5ecd2" +checksum = "d023da39d1fde5a8a3fe1f3e01ca9632ada0a63e9797de55a879d6e2236277be" dependencies = [ "getrandom", "serde", diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index 861efcb..2a3a60b 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.0", features = ["v4", "serde"] } [build-dependencies] protocol_types = {path="protocol_types"}