From 7d4154b533c0e57572b498add5aae2258c1b328b Mon Sep 17 00:00:00 2001 From: steven-omaha <35634100+steven-omaha@users.noreply.github.com> Date: Sat, 2 May 2026 16:03:30 +0200 Subject: [PATCH] chore(release): update lockfile --- Cargo.lock | 18 ++++++------------ Cargo.toml | 2 +- RELEASE-CHECKLIST.md | 2 +- 3 files changed, 8 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 51cb8ed..587d949 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -436,9 +436,9 @@ dependencies = [ [[package]] name = "toml" -version = "0.9.12+spec-1.1.0" +version = "1.1.2+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863" +checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee" dependencies = [ "indexmap", "serde_core", @@ -446,14 +446,14 @@ dependencies = [ "toml_datetime", "toml_parser", "toml_writer", - "winnow 0.7.15", + "winnow", ] [[package]] name = "toml_datetime" -version = "0.7.5+spec-1.1.0" +version = "1.1.1+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347" +checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7" dependencies = [ "serde_core", ] @@ -464,7 +464,7 @@ version = "1.1.2+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526" dependencies = [ - "winnow 1.0.2", + "winnow", ] [[package]] @@ -525,12 +525,6 @@ dependencies = [ "windows-link", ] -[[package]] -name = "winnow" -version = "0.7.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945" - [[package]] name = "winnow" version = "1.0.2" diff --git a/Cargo.toml b/Cargo.toml index dea127c..6e2b217 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ log = { version = "0.4", features = ["std"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -toml = "0.9" +toml = "1.0" # backends alpm = { version = "5.0", optional = true } diff --git a/RELEASE-CHECKLIST.md b/RELEASE-CHECKLIST.md index 56cb472..bff8156 100644 --- a/RELEASE-CHECKLIST.md +++ b/RELEASE-CHECKLIST.md @@ -2,9 +2,9 @@ Release Checklist ----------------- * Ensure local `main` is up to date with respect to `origin/main`. * Run `cargo update` and review dependency updates. - Commit updated `Cargo.toml` and `Cargo.lock` with "chore(release): update lockfile". * Run `cargo outdated` and review semver incompatible updates. Unless there is a strong motivation otherwise, review and update every dependency. +* Commit updated `Cargo.toml` and `Cargo.lock` with "chore(release): update lockfile". * Update the date and version in all man pages: "chore(release): bump man pages". * Run `cargo release -p pacdef `. Verify everything works as expected.