diff --git a/Cargo.lock b/Cargo.lock index 8188b12f..1ce2cc7d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -99,7 +99,7 @@ dependencies = [ "glass_pumpkin", "hashbrown", "nom", - "num-bigint", + "num-bigint 0.5.1", "num-complex", "num-traits", "once_cell", @@ -121,7 +121,7 @@ dependencies = [ "hex", "nom", "nom_locate", - "num-bigint", + "num-bigint 0.5.1", "num-complex", "num-traits", "pulldown-cmark 0.13.4", @@ -787,7 +787,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec260059e5d59a4899d78dff8bf59abf81f8f5b3b44e9d3ba25c9dade1390a36" dependencies = [ "getrandom", - "num-bigint", + "num-bigint 0.4.8", "num-integer", "num-traits", "once_cell", @@ -1114,6 +1114,16 @@ dependencies = [ "num-traits", ] +[[package]] +name = "num-bigint" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93e7820bc0a80a0238e650327316f929ba18d5be054b647490a3a6a339f3e7c0" +dependencies = [ + "num-integer", + "num-traits", +] + [[package]] name = "num-complex" version = "0.4.6" diff --git a/Cargo.toml b/Cargo.toml index 987c0af3..9d42c706 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,7 +38,7 @@ hashbrown = "0.17" hex = "0.4.2" nom = { version = "8", default-features = false, features = ["alloc"] } nom_locate = { version = "5", default-features = false, features = ["alloc"] } -num-bigint = "0.4.6" +num-bigint = "0.5.1" num-complex = "0.4.6" num-traits = { version = "0.2.19", default-features = false } once_cell = { version = "1.21.4", default-features = false }