From 50d974b76edffacd5133b3bc9d2719bd1cab9df4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 12 Jul 2026 09:22:41 +0000 Subject: [PATCH] chore(deps): bump num-bigint in the dependencies group Bumps the dependencies group with 1 update: [num-bigint](https://github.com/rust-num/num-bigint). Updates `num-bigint` from 0.4.8 to 0.5.1 - [Changelog](https://github.com/rust-num/num-bigint/blob/main/RELEASES.md) - [Commits](https://github.com/rust-num/num-bigint/compare/num-bigint-0.4.8...num-bigint-0.5.1) --- updated-dependencies: - dependency-name: num-bigint dependency-version: 0.5.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- Cargo.lock | 14 ++++++++++++-- Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ed5ce58..68b92c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -645,7 +645,7 @@ dependencies = [ "criterion", "faer", "nalgebra", - "num-bigint", + "num-bigint 0.5.1", "num-rational", "num-traits", "pastey", @@ -785,6 +785,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" @@ -810,7 +820,7 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" dependencies = [ - "num-bigint", + "num-bigint 0.4.8", "num-integer", "num-traits", ] diff --git a/Cargo.toml b/Cargo.toml index ba84c60..713a822 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,7 @@ include = [ [dependencies] # All runtime deps are optional; see [features] below. # Must stay in sync with num-rational -num-bigint = { version = "0.4.6", optional = true } +num-bigint = { version = "0.5.1", optional = true } num-rational = { version = "0.4.2", features = [ "num-bigint-std" ], optional = true } num-traits = { version = "0.2.19", optional = true }