From 63e48b0a96b25edbfa03710f94269a15d5aacc36 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 20 May 2022 07:06:39 +0000 Subject: [PATCH] Bump dialoguer from 0.8.0 to 0.10.1 Bumps [dialoguer](https://github.com/mitsuhiko/dialoguer) from 0.8.0 to 0.10.1. - [Release notes](https://github.com/mitsuhiko/dialoguer/releases) - [Changelog](https://github.com/mitsuhiko/dialoguer/blob/master/CHANGELOG.md) - [Commits](https://github.com/mitsuhiko/dialoguer/compare/0.8.0...v0.10.1) --- updated-dependencies: - dependency-name: dialoguer dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 11 +++++------ rust/cli/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1418d3bbc..85605a48e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -678,13 +678,13 @@ dependencies = [ [[package]] name = "console" -version = "0.14.1" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3993e6445baa160675931ec041a5e03ca84b9c6e32a056150d3aa2bdda0a1f45" +checksum = "a28b32d32ca44b70c3e4acd7db1babf555fa026e385fb95f18028f88848b3c31" dependencies = [ "encode_unicode", - "lazy_static", "libc", + "once_cell", "regex", "terminal_size", "unicode-width", @@ -800,12 +800,11 @@ dependencies = [ [[package]] name = "dialoguer" -version = "0.8.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9dd058f8b65922819fabb4a41e7d1964e56344042c26efbccd465202c23fa0c" +checksum = "d8c8ae48e400addc32a8710c8d62d55cb84249a7d58ac4cd959daecfbaddc545" dependencies = [ "console", - "lazy_static", "tempfile", "zeroize", ] diff --git a/rust/cli/Cargo.toml b/rust/cli/Cargo.toml index 621b004b5..231afdeab 100644 --- a/rust/cli/Cargo.toml +++ b/rust/cli/Cargo.toml @@ -26,7 +26,7 @@ serde = { version = "^1.0.125", features = ["derive"] } serde_json = "^1.0" lazy_static = "1" iso8601-duration = "0.1" -dialoguer = "0.8" +dialoguer = "0.10" # only needed for usage-docs # if the mdbook version changes, change it in .github/workflows/publish-docs.yml and .github/workflows/checks.yml as well