From 37681c5b0ecc9db7f36c370f43ebc28e6d6a3666 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Mar 2022 17:33:08 +0000 Subject: [PATCH] Bump rust_decimal from 1.8.1 to 1.23.1 Bumps [rust_decimal](https://github.com/paupino/rust-decimal) from 1.8.1 to 1.23.1. - [Release notes](https://github.com/paupino/rust-decimal/releases) - [Commits](https://github.com/paupino/rust-decimal/compare/1.8.1...1.23.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 56239f59258e..bb2af4bc545d 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" @@ -411,7 +417,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587" dependencies = [ "arrayref", - "arrayvec", + "arrayvec 0.5.2", "constant_time_eq", ] @@ -4992,7 +4998,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", ] @@ -5748,10 +5754,11 @@ dependencies = [ [[package]] name = "rust_decimal" -version = "1.8.1" +version = "1.23.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9e81662973c7a8d9663e64a0de4cd642b89a21d64966e3d99606efdc5fb0cc6" +checksum = "22dc69eadbf0ee2110b8d20418c0c6edbaefec2811c4963dc17b6344e11fe0f8" dependencies = [ + "arrayvec 0.7.2", "num-traits", "serde", ] diff --git a/testsuite/cli/Cargo.toml b/testsuite/cli/Cargo.toml index abb50cbc9b45..68c7727e9171 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.8.1" +rust_decimal = "1.23.1" num-traits = "0.2.14" once_cell = "1.4.1" reqwest = { version = "0.10.10", features = ["blocking", "json"] } diff --git a/testsuite/smoke-test/Cargo.toml b/testsuite/smoke-test/Cargo.toml index 2124a605e1dc..dedb0b974c4a 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.23.1" rusty-fork = "0.3.0" statistical = "1.0.0" tokio = { version = "0.2.22", features = ["full"] }