From 5b387df2fa4ac132c1f45064f890c20a78efe7e3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Jul 2023 19:31:54 -0300 Subject: [PATCH] build(deps): bump uuid from 1.4.0 to 1.4.1 in /rust (#1816) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.4.0 to 1.4.1.
Release notes

Sourced from uuid's releases.

1.4.1

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.4.0...1.4.1

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=uuid&package-manager=cargo&previous-version=1.4.0&new-version=1.4.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) ---
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)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Gabi --- rust/Cargo.lock | 4 ++-- rust/connlib/libs/common/Cargo.toml | 2 +- rust/relay/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 2dfc1e004..508ffdb94 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -3433,9 +3433,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.4.0" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d023da39d1fde5a8a3fe1f3e01ca9632ada0a63e9797de55a879d6e2236277be" +checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" dependencies = [ "getrandom 0.2.10", "serde", diff --git a/rust/connlib/libs/common/Cargo.toml b/rust/connlib/libs/common/Cargo.toml index 5556459cf..e1026122c 100644 --- a/rust/connlib/libs/common/Cargo.toml +++ b/rust/connlib/libs/common/Cargo.toml @@ -15,7 +15,7 @@ futures = { version = "0.3", default-features = false, features = ["std", "asyn futures-util = { version = "0.3", default-features = false, features = ["std", "async-await", "async-await-macro"] } tokio-tungstenite = { version = "0.19", default-features = false, features = ["connect", "handshake"] } webrtc = { version = "0.8" } -uuid = { version = "1.3", default-features = false, features = ["std", "v4", "serde"] } +uuid = { version = "1.4", default-features = false, features = ["std", "v4", "serde"] } thiserror = { version = "1.0", default-features = false } tracing = { version = "0.1", default-features = false, features = ["std", "attributes"] } serde_json = { version = "1.0", default-features = false, features = ["std"] } diff --git a/rust/relay/Cargo.toml b/rust/relay/Cargo.toml index eccb99e85..99be2296a 100644 --- a/rust/relay/Cargo.toml +++ b/rust/relay/Cargo.toml @@ -24,7 +24,7 @@ once_cell = "1.17.1" proptest = { version = "1.2.0", optional = true } test-strategy = "0.3.0" derive_more = { version = "0.99.17", features = ["from"] } -uuid = { version = "1.3.3", features = ["v4"] } +uuid = { version = "1.4.1", features = ["v4"] } phoenix-channel = { path = "../phoenix-channel" } url = "2.4.0" serde = { version = "1.0.171", features = ["derive"] }