From 6a4825f68ded53084b29b712ad656297a6fc2fff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Aug 2022 21:56:04 +0000 Subject: [PATCH] build(deps): bump indicatif from 0.16.2 to 0.17.0 Bumps [indicatif](https://github.com/console-rs/indicatif) from 0.16.2 to 0.17.0. - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/compare/0.16.2...0.17.0) --- updated-dependencies: - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 9 +++++---- exporter/Cargo.toml | 2 +- scanner/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fc9fe8b38..5c9e0ce37 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -553,7 +553,9 @@ dependencies = [ "encode_unicode", "libc", "once_cell", + "regex", "terminal_size", + "unicode-width", "winapi", ] @@ -1768,14 +1770,13 @@ dependencies = [ [[package]] name = "indicatif" -version = "0.16.2" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d207dc617c7a380ab07ff572a6e52fa202a2a8f355860ac9c38e23f8196be1b" +checksum = "fcc42b206e70d86ec03285b123e65a5458c92027d1fb2ae3555878b8113b3ddf" dependencies = [ "console", - "lazy_static", "number_prefix", - "regex", + "unicode-width", ] [[package]] diff --git a/exporter/Cargo.toml b/exporter/Cargo.toml index e39cacd7e..3202e38fe 100644 --- a/exporter/Cargo.toml +++ b/exporter/Cargo.toml @@ -13,7 +13,7 @@ ruffle_render_wgpu = { path = "../render/wgpu", features = ["clap"] } image = "0.24.2" log = "0.4" walkdir = "2.3.2" -indicatif = "0.16" +indicatif = "0.17" [features] avm_debug = ["ruffle_core/avm_debug"] diff --git a/scanner/Cargo.toml b/scanner/Cargo.toml index faf973360..d86bb74d1 100644 --- a/scanner/Cargo.toml +++ b/scanner/Cargo.toml @@ -12,7 +12,7 @@ log = "0.4" walkdir = "2.3.2" serde = { version = "1.0", features = ["derive"] } csv = "1.1" -indicatif = "0.16" +indicatif = "0.17" path-slash = "0.2.0" swf = { path = "../swf" } rayon = "1.5.3"