From 49c5c0e0f23b0544a573e055cd0d46ca2865a54a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Jun 2022 17:31:23 +0000 Subject: [PATCH] Bump rust_decimal from 1.9.0 to 1.25.0 Bumps [rust_decimal](https://github.com/paupino/rust-decimal) from 1.9.0 to 1.25.0. - [Release notes](https://github.com/paupino/rust-decimal/releases) - [Changelog](https://github.com/paupino/rust-decimal/blob/master/CHANGELOG.md) - [Commits](https://github.com/paupino/rust-decimal/compare/1.9.0...1.25.0) --- updated-dependencies: - dependency-name: rust_decimal dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 15 +++++++++++---- testsuite/cli/Cargo.toml | 2 +- testsuite/smoke-test/Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d8eceef351a1..d30e88669a66 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -172,6 +172,12 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" +[[package]] +name = "arrayvec" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" + [[package]] name = "assert_approx_eq" version = "1.1.0" @@ -433,7 +439,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587" dependencies = [ "arrayref", - "arrayvec", + "arrayvec 0.5.2", "constant_time_eq", ] @@ -4985,7 +4991,7 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ad9940b913ee56ddd94aec2d3cd179dd47068236f42a1a6415ccf9d880ce2a61" dependencies = [ - "arrayvec", + "arrayvec 0.5.2", "typed-arena", ] @@ -5784,10 +5790,11 @@ dependencies = [ [[package]] name = "rust_decimal" -version = "1.9.0" +version = "1.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5c739ba050709eae138f053356d27ff818d71fe54ce5a8d9f4c7a660bfb6684" +checksum = "34a3bb58e85333f1ab191bf979104b586ebd77475bc6681882825f4532dfe87c" dependencies = [ + "arrayvec 0.7.2", "num-traits", "serde", ] diff --git a/testsuite/cli/Cargo.toml b/testsuite/cli/Cargo.toml index 7a8284211514..4c6b5c177bb8 100644 --- a/testsuite/cli/Cargo.toml +++ b/testsuite/cli/Cargo.toml @@ -15,7 +15,7 @@ chrono = "0.4.19" hex = "0.4.2" proptest = { version = "0.10.1", optional = true } rustyline = "7.1.0" -rust_decimal = "1.9.0" +rust_decimal = "1.25.0" num-traits = "0.2.14" once_cell = "1.4.1" reqwest = { version = "0.11.0", features = ["blocking", "json"] } diff --git a/testsuite/smoke-test/Cargo.toml b/testsuite/smoke-test/Cargo.toml index de8f69d6bfd0..47632f30c4c8 100644 --- a/testsuite/smoke-test/Cargo.toml +++ b/testsuite/smoke-test/Cargo.toml @@ -17,7 +17,7 @@ num = "0.3.0" num-traits = "0.2.14" rand = "0.7.3" regex = "1.4.3" -rust_decimal = "1.9.0" +rust_decimal = "1.25.0" rusty-fork = "0.3.0" statistical = "1.0.0" tokio = { version = "1.0.2", features = ["full"] }