diff --git a/Cargo.lock b/Cargo.lock index d8eceef351a1..2dcf4895a598 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5784,10 +5784,11 @@ dependencies = [ [[package]] name = "rust_decimal" -version = "1.9.0" +version = "1.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5c739ba050709eae138f053356d27ff818d71fe54ce5a8d9f4c7a660bfb6684" +checksum = "9787e62372fc0c5a0f3af64c392652db72d3ec1cc0cff1becc175d2c11e6fbcc" dependencies = [ + "arrayvec", "num-traits", "serde", ] diff --git a/testsuite/cli/Cargo.toml b/testsuite/cli/Cargo.toml index 7a8284211514..263a34eec87b 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.14.2" 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..2baca23c10c7 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.14.2" rusty-fork = "0.3.0" statistical = "1.0.0" tokio = { version = "1.0.2", features = ["full"] }