From cb9a08535483109983d3cacadde3b07bdd78f260 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Aug 2022 12:15:04 +0000 Subject: [PATCH] Bump rust_decimal from 1.8.1 to 1.26.1 Bumps [rust_decimal](https://github.com/paupino/rust-decimal) from 1.8.1 to 1.26.1. - [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.8.1...1.26.1) --- 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 9363eb707d3c..7dab83065951 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -166,6 +166,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" @@ -394,7 +400,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587" dependencies = [ "arrayref", - "arrayvec", + "arrayvec 0.5.2", "constant_time_eq", ] @@ -4906,7 +4912,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", ] @@ -5655,10 +5661,11 @@ dependencies = [ [[package]] name = "rust_decimal" -version = "1.8.1" +version = "1.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9e81662973c7a8d9663e64a0de4cd642b89a21d64966e3d99606efdc5fb0cc6" +checksum = "ee9164faf726e4f3ece4978b25ca877ddc6802fa77f38cdccb32c7f805ecd70c" dependencies = [ + "arrayvec 0.7.2", "num-traits", "serde", ] diff --git a/testsuite/cli/Cargo.toml b/testsuite/cli/Cargo.toml index c2bfa3d81866..e304f2e93d9d 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.0.0" -rust_decimal = "1.8.1" +rust_decimal = "1.26.1" num-traits = "0.2.14" once_cell = "1.4.1" reqwest = { version = "0.10.9", features = ["blocking", "json"] } diff --git a/testsuite/smoke-test/Cargo.toml b/testsuite/smoke-test/Cargo.toml index 4c12ee2b0941..99db666ec7c9 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.2" -rust_decimal = "1.8.1" +rust_decimal = "1.26.1" rusty-fork = "0.3.0" statistical = "1.0.0" tokio = { version = "0.2.22", features = ["full"] }