russellbanks / Komac

The Community Manifest Creator for WinGet
GNU General Public License v3.0
199 stars 17 forks source link

Update Rust crate tui-textarea to v0.5.1 #687

Closed renovate[bot] closed 1 month ago

renovate[bot] commented 1 month ago

Mend Renovate

This PR contains the following updates:

Package Type Update Change
tui-textarea dependencies patch 0.5.0 -> 0.5.1

Release Notes

rhysd/tui-textarea (tui-textarea) ### [`v0.5.1`](https://togithub.com/rhysd/tui-textarea/blob/HEAD/CHANGELOG.md#v051---12-Jul-2024) [Compare Source](https://togithub.com/rhysd/tui-textarea/compare/v0.5.0...v0.5.1) - Add `serde` optional feature. When it is enabled, some types support the serialization/deserialization with [serde](https://crates.io/crates/serde) crate. See [the document](https://togithub.com/rhysd/tui-textarea?tab=readme-ov-file#serializationdeserialization-support) for more details. ([#​62](https://togithub.com/rhysd/tui-textarea/issues/62), thanks [@​cestef](https://togithub.com/cestef)) ```rust use tui_textarea::Input; let json = r#" { "key": { "Char": "a" }, "ctrl": true, "alt": false, "shift": true } "#; let input: Input = serde_json::from_str(json).unwrap(); println!("{input}"); // Input { // key: Key::Char('a'), // ctrl: true, // alt: false, // shift: true, // } ``` \[Changes]\[v0.5.1]

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Mend Renovate. View repository job log here.