From 892603126721367d96c776f4ab1354e35098d529 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Feb 2025 21:36:13 +0000 Subject: [PATCH] build(deps): bump uuid from 1.9.1 to 1.13.1 Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.9.1 to 1.13.1. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.9.1...1.13.1) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 48 ++++++++++++++++++++++++++++++------- chain/ethereum/Cargo.toml | 2 +- core/Cargo.toml | 2 +- runtime/wasm/Cargo.toml | 2 +- server/websocket/Cargo.toml | 2 +- store/postgres/Cargo.toml | 2 +- 6 files changed, 44 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 17573acd02c..3ca84ed26fd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "Inflector" @@ -1727,7 +1727,19 @@ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" dependencies = [ "cfg-if 1.0.0", "libc", - "wasi", + "wasi 0.11.0+wasi-snapshot-preview1", +] + +[[package]] +name = "getrandom" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43a49c392881ce6d5c3b8cb70f98717b7c07aabbdff06687b9030dbfbe2725f8" +dependencies = [ + "cfg-if 1.0.0", + "libc", + "wasi 0.13.3+wasi-0.2.2", + "windows-targets 0.52.6", ] [[package]] @@ -3131,7 +3143,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" dependencies = [ "libc", - "wasi", + "wasi 0.11.0+wasi-snapshot-preview1", "windows-sys 0.48.0", ] @@ -4009,7 +4021,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom", + "getrandom 0.2.15", ] [[package]] @@ -4062,7 +4074,7 @@ version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891" dependencies = [ - "getrandom", + "getrandom 0.2.15", "libredox", "thiserror", ] @@ -4169,7 +4181,7 @@ checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" dependencies = [ "cc", "cfg-if 1.0.0", - "getrandom", + "getrandom 0.2.15", "libc", "spin", "untrusted", @@ -5757,11 +5769,11 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.9.1" +version = "1.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5de17fd2f7da591098415cff336e12965a28061ddace43b59cb3c430179c9439" +checksum = "ced87ca4be083373936a67f8de945faa23b6b42384bd5b64434850802c6dccd0" dependencies = [ - "getrandom", + "getrandom 0.3.1", "serde", ] @@ -5808,6 +5820,15 @@ version = "0.11.0+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" +[[package]] +name = "wasi" +version = "0.13.3+wasi-0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26816d2e1a4a36a2940b96c5296ce403917633dff8f3440e9b236ed6f6bacad2" +dependencies = [ + "wit-bindgen-rt", +] + [[package]] name = "wasite" version = "0.1.0" @@ -6557,6 +6578,15 @@ dependencies = [ "url", ] +[[package]] +name = "wit-bindgen-rt" +version = "0.33.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c" +dependencies = [ + "bitflags 2.6.0", +] + [[package]] name = "wit-parser" version = "0.13.2" diff --git a/chain/ethereum/Cargo.toml b/chain/ethereum/Cargo.toml index 61ae59ab4af..c95a4e56d17 100644 --- a/chain/ethereum/Cargo.toml +++ b/chain/ethereum/Cargo.toml @@ -22,7 +22,7 @@ graph-runtime-derive = { path = "../../runtime/derive" } [dev-dependencies] base64 = "0" -uuid = { version = "1.9.1", features = ["v4"] } +uuid = { version = "1.13.1", features = ["v4"] } [build-dependencies] tonic-build = { workspace = true } diff --git a/core/Cargo.toml b/core/Cargo.toml index 4533b5d8880..d32aadc39d7 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -24,5 +24,5 @@ anyhow = "1.0" [dev-dependencies] tower-test = { git = "https://github.com/tower-rs/tower.git" } -uuid = { version = "1.9.1", features = ["v4"] } +uuid = { version = "1.13.1", features = ["v4"] } wiremock = "0.6.1" diff --git a/runtime/wasm/Cargo.toml b/runtime/wasm/Cargo.toml index 0e6e5d64100..45ab7c06916 100644 --- a/runtime/wasm/Cargo.toml +++ b/runtime/wasm/Cargo.toml @@ -11,7 +11,7 @@ graph = { path = "../../graph" } bs58 = "0.4.0" graph-runtime-derive = { path = "../derive" } semver = "1.0.23" -uuid = { version = "1.9.1", features = ["v4"] } +uuid = { version = "1.13.1", features = ["v4"] } anyhow = "1.0" never = "0.1" diff --git a/server/websocket/Cargo.toml b/server/websocket/Cargo.toml index 622682732c1..030a774c83e 100644 --- a/server/websocket/Cargo.toml +++ b/server/websocket/Cargo.toml @@ -8,4 +8,4 @@ graph = { path = "../../graph" } serde = { workspace = true } serde_derive = { workspace = true } tokio-tungstenite = "0.23" -uuid = { version = "1.9.1", features = ["v4"] } +uuid = { version = "1.13.1", features = ["v4"] } diff --git a/store/postgres/Cargo.toml b/store/postgres/Cargo.toml index fa9ea5a20c5..d02c1b314e4 100644 --- a/store/postgres/Cargo.toml +++ b/store/postgres/Cargo.toml @@ -26,7 +26,7 @@ postgres-openssl = "0.5.0" rand = "0.8.4" serde = { workspace = true } serde_json = { workspace = true } -uuid = { version = "1.9.1", features = ["v4"] } +uuid = { version = "1.13.1", features = ["v4"] } stable-hash_legacy = { git = "https://github.com/graphprotocol/stable-hash", branch = "old", package = "stable-hash" } anyhow = "1.0.86" git-testament = "0.2.5"