diff --git a/Cargo.lock b/Cargo.lock index c49377cce75..c3b80fe7443 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5719,11 +5719,11 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.9.1" +version = "1.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5de17fd2f7da591098415cff336e12965a28061ddace43b59cb3c430179c9439" +checksum = "e0f540e3240398cce6128b64ba83fdbdd86129c16a3aa1a3a252efd66eb3d587" dependencies = [ - "getrandom 0.2.15", + "getrandom 0.3.1", "serde", ] diff --git a/chain/ethereum/Cargo.toml b/chain/ethereum/Cargo.toml index 61ae59ab4af..30378ec5586 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.15.1", features = ["v4"] } [build-dependencies] tonic-build = { workspace = true } diff --git a/core/Cargo.toml b/core/Cargo.toml index 06c3d7d9862..1043fc307c2 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -23,5 +23,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.15.1", features = ["v4"] } wiremock = "0.6.1" diff --git a/runtime/wasm/Cargo.toml b/runtime/wasm/Cargo.toml index 3e74e9f985e..c728f0bfb65 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.15.1", features = ["v4"] } anyhow = "1.0" never = "0.1" diff --git a/store/postgres/Cargo.toml b/store/postgres/Cargo.toml index a70c2b8b614..bbf08701633 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.15.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"