From db6ddd04cf713ce4598bde4fb63c4cb93a741f83 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 13 Feb 2022 09:05:41 +0000 Subject: [PATCH] build(deps): bump bigdecimal from 0.1.2 to 0.3.0 Bumps [bigdecimal](https://github.com/akubera/bigdecimal-rs) from 0.1.2 to 0.3.0. - [Release notes](https://github.com/akubera/bigdecimal-rs/releases) - [Commits](https://github.com/akubera/bigdecimal-rs/compare/v0.1.2...v0.3.0) --- updated-dependencies: - dependency-name: bigdecimal dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 32 +++++++++++++++++++++++++++----- graph/Cargo.toml | 2 +- 2 files changed, 28 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dc62bfad2ab..390b7e9a95c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -209,7 +209,18 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1374191e2dd25f9ae02e3aa95041ed5d747fc77b3c102b49fe2dd9a8117a6244" dependencies = [ - "num-bigint", + "num-bigint 0.2.6", + "num-integer", + "num-traits", +] + +[[package]] +name = "bigdecimal" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6aaf33151a6429fe9211d1b276eafdf70cdff28b071e76c0b0e1503221ea3744" +dependencies = [ + "num-bigint 0.4.3", "num-integer", "num-traits", "serde", @@ -831,12 +842,12 @@ version = "1.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b28135ecf6b7d446b43e27e225622a038cc4e2930a1022f51cdb97ada19b8e4d" dependencies = [ - "bigdecimal", + "bigdecimal 0.1.2", "bitflags", "byteorder", "chrono", "diesel_derives", - "num-bigint", + "num-bigint 0.2.6", "num-integer", "num-traits", "pq-sys", @@ -1423,7 +1434,7 @@ dependencies = [ "async-stream", "async-trait", "atomic_refcell", - "bigdecimal", + "bigdecimal 0.3.0", "bytes 1.0.1", "chrono", "diesel", @@ -1439,7 +1450,7 @@ dependencies = [ "itertools", "lazy_static", "maplit", - "num-bigint", + "num-bigint 0.2.6", "num-traits", "num_cpus", "parking_lot 0.11.2", @@ -2680,6 +2691,17 @@ dependencies = [ "serde", ] +[[package]] +name = "num-bigint" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" +dependencies = [ + "autocfg 1.0.1", + "num-integer", + "num-traits", +] + [[package]] name = "num-integer" version = "0.1.44" diff --git a/graph/Cargo.toml b/graph/Cargo.toml index 26eca2466e0..05fbb8f3aca 100644 --- a/graph/Cargo.toml +++ b/graph/Cargo.toml @@ -8,7 +8,7 @@ anyhow = "1.0" async-trait = "0.1.50" async-stream = "0.3" atomic_refcell = "0.1.8" -bigdecimal = { version = "0.1.0", features = ["serde"] } +bigdecimal = { version = "0.3.0", features = ["serde"] } bytes = "1.0.1" diesel = { version = "1.4.8", features = ["postgres", "serde_json", "numeric", "r2d2", "chrono"] } diesel_derives = "1.4"