fix(deps): update rust crate dialoguer to 0.12.0

This commit is contained in:
renovate[bot]
2026-01-13 06:54:36 +00:00
committed by GitHub
parent 00ff92fd6e
commit 18c6319c95
2 changed files with 9 additions and 52 deletions

59
Cargo.lock generated
View File

@@ -349,19 +349,6 @@ dependencies = [
"winnow", "winnow",
] ]
[[package]]
name = "console"
version = "0.15.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
dependencies = [
"encode_unicode",
"libc",
"once_cell",
"unicode-width",
"windows-sys 0.59.0",
]
[[package]] [[package]]
name = "console" name = "console"
version = "0.16.2" version = "0.16.2"
@@ -470,7 +457,7 @@ dependencies = [
"serde_json", "serde_json",
"temp-env", "temp-env",
"tempfile", "tempfile",
"thiserror 2.0.17", "thiserror",
"tokio", "tokio",
"tokio-test", "tokio-test",
"toml", "toml",
@@ -523,14 +510,13 @@ dependencies = [
[[package]] [[package]]
name = "dialoguer" name = "dialoguer"
version = "0.11.0" version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "658bce805d770f407bc62102fca7c2c64ceef2fbcb2b8bd19d2765ce093980de" checksum = "25f104b501bf2364e78d0d3974cbc774f738f5865306ed128e1e0d7499c0ad96"
dependencies = [ dependencies = [
"console 0.15.11", "console",
"shell-words", "shell-words",
"tempfile", "tempfile",
"thiserror 1.0.69",
"zeroize", "zeroize",
] ]
@@ -1031,7 +1017,7 @@ dependencies = [
"similar", "similar",
"stringmetrics", "stringmetrics",
"tabwriter", "tabwriter",
"thiserror 2.0.17", "thiserror",
"tokio", "tokio",
"tracing", "tracing",
"url", "url",
@@ -1276,7 +1262,7 @@ version = "0.18.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9375e112e4b463ec1b1c6c011953545c65a30164fbab5b581df32b3abf0dcb88" checksum = "9375e112e4b463ec1b1c6c011953545c65a30164fbab5b581df32b3abf0dcb88"
dependencies = [ dependencies = [
"console 0.16.2", "console",
"portable-atomic", "portable-atomic",
"unicode-width", "unicode-width",
"unit-prefix", "unit-prefix",
@@ -2082,33 +2068,13 @@ version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683" checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
[[package]]
name = "thiserror"
version = "1.0.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
dependencies = [
"thiserror-impl 1.0.69",
]
[[package]] [[package]]
name = "thiserror" name = "thiserror"
version = "2.0.17" version = "2.0.17"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
dependencies = [ dependencies = [
"thiserror-impl 2.0.17", "thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
dependencies = [
"proc-macro2",
"quote",
"syn",
] ]
[[package]] [[package]]
@@ -2562,15 +2528,6 @@ dependencies = [
"windows-targets 0.52.6", "windows-targets 0.52.6",
] ]
[[package]]
name = "windows-sys"
version = "0.59.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
dependencies = [
"windows-targets 0.52.6",
]
[[package]] [[package]]
name = "windows-sys" name = "windows-sys"
version = "0.60.2" version = "0.60.2"
@@ -2781,7 +2738,7 @@ dependencies = [
"seahash", "seahash",
"serde", "serde",
"serde_json", "serde_json",
"thiserror 2.0.17", "thiserror",
"time", "time",
"tokio", "tokio",
"url", "url",

View File

@@ -44,7 +44,7 @@ tokio = { version = "1.47.1", features = [
toml = "0.9.11" toml = "0.9.11"
base64 = "0.22.1" base64 = "0.22.1"
flate2 = "1.1.5" flate2 = "1.1.5"
dialoguer = "0.11" dialoguer = "0.12.0"
indicatif = "0.18.3" indicatif = "0.18.3"
[dev-dependencies] [dev-dependencies]