diff --git a/Cargo.lock b/Cargo.lock index 17573acd02c..f42385ad4d4 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" @@ -5757,9 +5757,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.9.1" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5de17fd2f7da591098415cff336e12965a28061ddace43b59cb3c430179c9439" +checksum = "744018581f9a3454a9e15beb8a33b017183f1e7c0cd170232a2d1453b23a51c4" dependencies = [ "getrandom", "serde", diff --git a/chain/ethereum/Cargo.toml b/chain/ethereum/Cargo.toml index 61ae59ab4af..21f8e5b57bf 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.12.0", features = ["v4"] } [build-dependencies] tonic-build = { workspace = true } diff --git a/core/Cargo.toml b/core/Cargo.toml index 4533b5d8880..d91d942d836 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.12.0", features = ["v4"] } wiremock = "0.6.1" diff --git a/runtime/wasm/Cargo.toml b/runtime/wasm/Cargo.toml index 0e6e5d64100..cbd836bc8bc 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.12.0", features = ["v4"] } anyhow = "1.0" never = "0.1" diff --git a/server/websocket/Cargo.toml b/server/websocket/Cargo.toml index 622682732c1..715dcba93f2 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.12.0", features = ["v4"] } diff --git a/store/postgres/Cargo.toml b/store/postgres/Cargo.toml index fa9ea5a20c5..f59343da0a6 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.12.0", 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"