From 2607918dc738db1bce8d17158eef3ded9f496b73 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Jun 2026 06:24:23 +0000 Subject: [PATCH] Bump bigdecimal from 0.2.2 to 0.4.10 Bumps [bigdecimal](https://github.com/akubera/bigdecimal-rs) from 0.2.2 to 0.4.10. - [Release notes](https://github.com/akubera/bigdecimal-rs/releases) - [Commits](https://github.com/akubera/bigdecimal-rs/compare/v0.2.2...v0.4.10) --- updated-dependencies: - dependency-name: bigdecimal dependency-version: 0.4.10 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 48 ++++++++++++++++++++++++++++++++++++++---------- Cargo.toml | 2 +- 2 files changed, 39 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e472002..842ff84 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 = "ahash" @@ -63,7 +63,20 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d1e50562e37200edf7c6c43e54a08e64a5553bfb59d9c297d5572512aa517256" dependencies = [ - "num-bigint", + "num-bigint 0.3.3", + "num-integer", + "num-traits", +] + +[[package]] +name = "bigdecimal" +version = "0.4.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d6867f1565b3aad85681f1015055b087fcfd840d6aeee6eee7f2da317603695" +dependencies = [ + "autocfg", + "libm", + "num-bigint 0.4.6", "num-integer", "num-traits", ] @@ -870,6 +883,12 @@ version = "0.2.121" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "efaa7b300f3b5fe8eb6bf21ce3895e1751d9665086af2d64b42f19701015ff4f" +[[package]] +name = "libm" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981" + [[package]] name = "lock_api" version = "0.4.7" @@ -995,21 +1014,30 @@ dependencies = [ "num-traits", ] +[[package]] +name = "num-bigint" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" +dependencies = [ + "num-integer", + "num-traits", +] + [[package]] name = "num-integer" -version = "0.1.44" +version = "0.1.46" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db" +checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" dependencies = [ - "autocfg", "num-traits", ] [[package]] name = "num-traits" -version = "0.2.14" +version = "0.2.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" dependencies = [ "autocfg", ] @@ -1498,7 +1526,7 @@ name = "settlement-analysis" version = "0.1.0" dependencies = [ "anyhow", - "bigdecimal", + "bigdecimal 0.4.10", "clap", "futures", "num-traits", @@ -1609,7 +1637,7 @@ dependencies = [ "ahash", "atoi", "base64", - "bigdecimal", + "bigdecimal 0.2.2", "bitflags", "byteorder", "bytes", @@ -1630,7 +1658,7 @@ dependencies = [ "log", "md-5", "memchr", - "num-bigint", + "num-bigint 0.3.3", "once_cell", "paste", "percent-encoding", diff --git a/Cargo.toml b/Cargo.toml index 24c486b..e70b3fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" [dependencies] anyhow = "1.0" -bigdecimal = "0.2" +bigdecimal = "0.4" clap = { version = "3.1", features = ["derive", "env"] } futures = { version = "0.3", default-features = false } num-traits = "0.2"