fix(deps): update rust crate dialoguer to 0.12.0 (#130)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [dialoguer](https://redirect.github.com/console-rs/dialoguer) | dependencies | minor | `0.11` → `0.12.0` | --- ### Release Notes <details> <summary>console-rs/dialoguer (dialoguer)</summary> ### [`v0.12.0`](https://redirect.github.com/console-rs/dialoguer/releases/tag/v0.12.0): 0.12.0 [Compare Source](https://redirect.github.com/console-rs/dialoguer/compare/v0.11.0...v0.12.0) #### What's Changed - Fix prompt in `select.rs` example by [@​jwodder](https://redirect.github.com/jwodder) in [#​289](https://redirect.github.com/console-rs/dialoguer/pull/289) - Document crate feature guarded items on docs.rs by [@​robjtede](https://redirect.github.com/robjtede) in [#​293](https://redirect.github.com/console-rs/dialoguer/pull/293) - Add conversion between error types by [@​jacobtread](https://redirect.github.com/jacobtread) in [#​300](https://redirect.github.com/console-rs/dialoguer/pull/300) - Accept items by iterator instead of slice by [@​jacobtread](https://redirect.github.com/jacobtread) in [#​299](https://redirect.github.com/console-rs/dialoguer/pull/299) - refactor: replace `thiserror` with a manual impl by [@​CosmicHorrorDev](https://redirect.github.com/CosmicHorrorDev) in [#​327](https://redirect.github.com/console-rs/dialoguer/pull/327) - Update console to 0.16 by [@​musicinmybrain](https://redirect.github.com/musicinmybrain) in [#​329](https://redirect.github.com/console-rs/dialoguer/pull/329) </details> --- ### Configuration 📅 **Schedule**: Branch creation - Between 12:00 AM and 05:59 AM, on day 24 of the month ( * 0-5 24 * * ) (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Never, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/jerus-org/cull-gmail). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNzQuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
This commit is contained in:
59
Cargo.lock
generated
59
Cargo.lock
generated
@@ -349,19 +349,6 @@ dependencies = [
|
||||
"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]]
|
||||
name = "console"
|
||||
version = "0.16.2"
|
||||
@@ -470,7 +457,7 @@ dependencies = [
|
||||
"serde_json",
|
||||
"temp-env",
|
||||
"tempfile",
|
||||
"thiserror 2.0.17",
|
||||
"thiserror",
|
||||
"tokio",
|
||||
"tokio-test",
|
||||
"toml",
|
||||
@@ -523,14 +510,13 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "dialoguer"
|
||||
version = "0.11.0"
|
||||
version = "0.12.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "658bce805d770f407bc62102fca7c2c64ceef2fbcb2b8bd19d2765ce093980de"
|
||||
checksum = "25f104b501bf2364e78d0d3974cbc774f738f5865306ed128e1e0d7499c0ad96"
|
||||
dependencies = [
|
||||
"console 0.15.11",
|
||||
"console",
|
||||
"shell-words",
|
||||
"tempfile",
|
||||
"thiserror 1.0.69",
|
||||
"zeroize",
|
||||
]
|
||||
|
||||
@@ -1031,7 +1017,7 @@ dependencies = [
|
||||
"similar",
|
||||
"stringmetrics",
|
||||
"tabwriter",
|
||||
"thiserror 2.0.17",
|
||||
"thiserror",
|
||||
"tokio",
|
||||
"tracing",
|
||||
"url",
|
||||
@@ -1276,7 +1262,7 @@ version = "0.18.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9375e112e4b463ec1b1c6c011953545c65a30164fbab5b581df32b3abf0dcb88"
|
||||
dependencies = [
|
||||
"console 0.16.2",
|
||||
"console",
|
||||
"portable-atomic",
|
||||
"unicode-width",
|
||||
"unit-prefix",
|
||||
@@ -2082,33 +2068,13 @@ version = "0.5.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
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]]
|
||||
name = "thiserror"
|
||||
version = "2.0.17"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
||||
dependencies = [
|
||||
"thiserror-impl 2.0.17",
|
||||
]
|
||||
|
||||
[[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",
|
||||
"thiserror-impl",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -2562,15 +2528,6 @@ dependencies = [
|
||||
"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]]
|
||||
name = "windows-sys"
|
||||
version = "0.60.2"
|
||||
@@ -2781,7 +2738,7 @@ dependencies = [
|
||||
"seahash",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"thiserror 2.0.17",
|
||||
"thiserror",
|
||||
"time",
|
||||
"tokio",
|
||||
"url",
|
||||
|
||||
@@ -44,7 +44,7 @@ tokio = { version = "1.47.1", features = [
|
||||
toml = "0.9.11"
|
||||
base64 = "0.22.1"
|
||||
flate2 = "1.1.5"
|
||||
dialoguer = "0.11"
|
||||
dialoguer = "0.12.0"
|
||||
indicatif = "0.18.3"
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
2
PRLOG.md
2
PRLOG.md
@@ -36,6 +36,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
- deps: update rust crate serde_json to 1.0.149(pr [#126])
|
||||
- deps: update rust crate assert_cmd to 2.1.2(pr [#129])
|
||||
- deps: update rust crate toml to 0.9.11(pr [#127])
|
||||
- deps: update rust crate dialoguer to 0.12.0(pr [#130])
|
||||
|
||||
## [0.0.16] - 2025-10-30
|
||||
|
||||
@@ -395,6 +396,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
[#129]: https://github.com/jerus-org/cull-gmail/pull/129
|
||||
[#135]: https://github.com/jerus-org/cull-gmail/pull/135
|
||||
[#127]: https://github.com/jerus-org/cull-gmail/pull/127
|
||||
[#130]: https://github.com/jerus-org/cull-gmail/pull/130
|
||||
[Unreleased]: https://github.com/jerus-org/cull-gmail/compare/v0.0.16...HEAD
|
||||
[0.0.16]: https://github.com/jerus-org/cull-gmail/compare/v0.0.15...v0.0.16
|
||||
[0.0.15]: https://github.com/jerus-org/cull-gmail/compare/v0.0.14...v0.0.15
|
||||
|
||||
Reference in New Issue
Block a user