From 5c8bd0dab284e3c4aa21a8726036c5e400e12602 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 12:00:54 +0000 Subject: [PATCH] chore(deps): bump byte-unit from 4.0.19 to 5.0.3 Bumps [byte-unit](https://github.com/magiclen/byte-unit) from 4.0.19 to 5.0.3. - [Commits](https://github.com/magiclen/byte-unit/compare/v4.0.19...v5.0.3) --- updated-dependencies: - dependency-name: byte-unit dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 15 +++++++++++++-- Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e598e58b..965e023e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -546,10 +546,11 @@ checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" [[package]] name = "byte-unit" -version = "4.0.19" +version = "5.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da78b32057b8fdfc352504708feeba7216dcd65a2c9ab02978cbd288d1279b6c" +checksum = "bc40af92e0f7f964b7ab1ebc81315cce78fc484802d534143321c956f58d7be3" dependencies = [ + "rust_decimal", "serde", "utf8-width", ] @@ -2110,6 +2111,16 @@ dependencies = [ "windows-sys", ] +[[package]] +name = "rust_decimal" +version = "1.33.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06676aec5ccb8fc1da723cc8c0f9a46549f21ebb8753d3915c6c41db1e7f1dc4" +dependencies = [ + "arrayvec", + "num-traits", +] + [[package]] name = "rustc-demangle" version = "0.1.23" diff --git a/Cargo.toml b/Cargo.toml index 619792f1..d0867f56 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -54,7 +54,7 @@ default-features = false features = ["toml", "yaml"] [dependencies.byte-unit] -version = "4.0.19" +version = "5.0.3" features = ["serde"] [dependencies.infer]