diff --git a/Cargo.lock b/Cargo.lock index 422b5d15f7e..c3a92c507ec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5733,9 +5733,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.9.1" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5de17fd2f7da591098415cff336e12965a28061ddace43b59cb3c430179c9439" +checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314" dependencies = [ "getrandom", ] diff --git a/chain/ethereum/Cargo.toml b/chain/ethereum/Cargo.toml index 61ae59ab4af..4300b689d61 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.10.0", features = ["v4"] } [build-dependencies] tonic-build = { workspace = true } diff --git a/core/Cargo.toml b/core/Cargo.toml index fb546d8a29d..a19b97e7666 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -29,4 +29,4 @@ ipfs-api-backend-hyper = "0.6" ipfs-api = { version = "0.17.0", features = [ "with-hyper-rustls", ], default-features = false } -uuid = { version = "1.9.1", features = ["v4"] } +uuid = { version = "1.10.0", features = ["v4"] } diff --git a/runtime/wasm/Cargo.toml b/runtime/wasm/Cargo.toml index 0e6e5d64100..008361c41a4 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.10.0", features = ["v4"] } anyhow = "1.0" never = "0.1" diff --git a/server/websocket/Cargo.toml b/server/websocket/Cargo.toml index 622682732c1..740837157e2 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.10.0", features = ["v4"] } diff --git a/store/postgres/Cargo.toml b/store/postgres/Cargo.toml index cf7e0969cd2..a2d280a1568 100644 --- a/store/postgres/Cargo.toml +++ b/store/postgres/Cargo.toml @@ -23,7 +23,7 @@ openssl = "0.10.64" postgres-openssl = "0.5.0" rand = "0.8.4" serde = { workspace = true } -uuid = { version = "1.9.1", features = ["v4"] } +uuid = { version = "1.10.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"