From 917d9d229548997040800f00c966719096fe71a8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 11:44:28 +0000 Subject: [PATCH] build(deps): bump uuid from 1.3.2 to 1.9.1 Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.3.2 to 1.9.1. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.3.2...1.9.1) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- chain/ethereum/Cargo.toml | 2 +- core/Cargo.toml | 2 +- runtime/wasm/Cargo.toml | 2 +- server/websocket/Cargo.toml | 2 +- store/postgres/Cargo.toml | 2 +- tests/Cargo.toml | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 67990cd2079..925ad4a0994 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5087,9 +5087,9 @@ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" [[package]] name = "uuid" -version = "1.3.2" +version = "1.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4dad5567ad0cf5b760e5665964bec1b47dfd077ba8a2544b513f3556d3d239a2" +checksum = "5de17fd2f7da591098415cff336e12965a28061ddace43b59cb3c430179c9439" dependencies = [ "getrandom", ] diff --git a/chain/ethereum/Cargo.toml b/chain/ethereum/Cargo.toml index cd8b76512e4..08846d2cf2a 100644 --- a/chain/ethereum/Cargo.toml +++ b/chain/ethereum/Cargo.toml @@ -26,7 +26,7 @@ graph-runtime-derive = { path = "../../runtime/derive" } [dev-dependencies] base64 = "0.20.0" -uuid = { version = "1.3.2", features = ["v4"] } +uuid = { version = "1.9.1", features = ["v4"] } [build-dependencies] tonic-build = { workspace = true } diff --git a/core/Cargo.toml b/core/Cargo.toml index 5536e0f46a6..c5f10b07cc8 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -36,4 +36,4 @@ ipfs-api-backend-hyper = "0.6" ipfs-api = { version = "0.17.0", features = [ "with-hyper-rustls", ], default-features = false } -uuid = { version = "1.3.2", features = ["v4"] } +uuid = { version = "1.9.1", features = ["v4"] } diff --git a/runtime/wasm/Cargo.toml b/runtime/wasm/Cargo.toml index c7787430290..e97134c254d 100644 --- a/runtime/wasm/Cargo.toml +++ b/runtime/wasm/Cargo.toml @@ -14,7 +14,7 @@ bs58 = "0.4.0" graph-runtime-derive = { path = "../derive" } semver = "1.0.16" lazy_static = "1.4" -uuid = { version = "1.3.2", features = ["v4"] } +uuid = { version = "1.9.1", features = ["v4"] } strum = "0.21.0" strum_macros = "0.21.1" bytes = "1.0" diff --git a/server/websocket/Cargo.toml b/server/websocket/Cargo.toml index e154decdf15..02aa955ab99 100644 --- a/server/websocket/Cargo.toml +++ b/server/websocket/Cargo.toml @@ -12,5 +12,5 @@ lazy_static = "1.2.0" serde = "1.0" serde_derive = "1.0" tokio-tungstenite = "0.17" -uuid = { version = "1.3.2", features = ["v4"] } +uuid = { version = "1.9.1", features = ["v4"] } anyhow = "1.0" diff --git a/store/postgres/Cargo.toml b/store/postgres/Cargo.toml index eb68a7ccdc7..cea1e98a7f7 100644 --- a/store/postgres/Cargo.toml +++ b/store/postgres/Cargo.toml @@ -29,7 +29,7 @@ openssl = "0.10.52" postgres-openssl = "0.5.0" rand = "0.8.4" serde = "1.0" -uuid = { version = "1.3.2", features = ["v4"] } +uuid = { version = "1.9.1", features = ["v4"] } stable-hash_legacy = { version = "0.3.3", package = "stable-hash" } diesel_derives = "1.4.1" anyhow = "1.0.71" diff --git a/tests/Cargo.toml b/tests/Cargo.toml index e4d7c829c4a..5f51e25cd82 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -23,7 +23,7 @@ serde = "1.0" serde_yaml = "0.9.21" slog = { version = "2.7.0", features = ["release_max_level_trace", "max_level_trace"] } tokio = { version = "1.28.2", features = ["rt", "macros", "process"] } -uuid = { version = "1.3.2", features = ["v4"] } +uuid = { version = "1.9.1", features = ["v4"] } [dev-dependencies] anyhow = "1.0.71"