diff --git a/Cargo.lock b/Cargo.lock index ed49c7209d4..ce84003a2ab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -914,7 +914,7 @@ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" dependencies = [ "anstyle", "once_cell_polyfill", - "windows-sys 0.60.2", + "windows-sys 0.61.1", ] [[package]] @@ -3856,7 +3856,7 @@ dependencies = [ "lazy_static", "lru_time_cache", "maplit", - "num-bigint 0.2.6", + "num-bigint 0.3.3", "num-integer", "num-traits", "object_store", @@ -5541,6 +5541,17 @@ name = "num-bigint" version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304" +dependencies = [ + "autocfg", + "num-integer", + "num-traits", +] + +[[package]] +name = "num-bigint" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f6f7833f2cbf2360a6cfd58cd41a53aa7a90bd4c202f5b1c7dd2ed73c57b2c3" dependencies = [ "autocfg", "num-integer", @@ -6349,7 +6360,7 @@ version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "343d3bd7056eda839b03204e68deff7d1b13aba7af2b2fd16890697274262ee7" dependencies = [ - "heck 0.4.1", + "heck 0.5.0", "itertools 0.14.0", "log", "multimap", @@ -7990,7 +8001,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874" dependencies = [ "rustix 1.0.7", - "windows-sys 0.60.2", + "windows-sys 0.61.1", ] [[package]] diff --git a/graph/Cargo.toml b/graph/Cargo.toml index fcbfe1ee5a2..9562e84b217 100644 --- a/graph/Cargo.toml +++ b/graph/Cargo.toml @@ -37,7 +37,7 @@ futures01 = { package = "futures", version = "0.1.31" } lru_time_cache = "0.11" graphql-tools = { workspace = true } lazy_static = { workspace = true } -num-bigint = { version = "=0.2.6", features = ["serde"] } +num-bigint = { version = "=0.3.3", features = ["serde"] } num-integer = { version = "=0.1.46" } num-traits = "=0.2.19" rand.workspace = true