chore(release): update lockfile

This commit is contained in:
steven-omaha
2026-05-02 16:03:30 +02:00
parent f06b93e5f9
commit 7d4154b533
3 changed files with 8 additions and 14 deletions
Generated
+6 -12
View File
@@ -436,9 +436,9 @@ dependencies = [
[[package]] [[package]]
name = "toml" 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" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863" checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
dependencies = [ dependencies = [
"indexmap", "indexmap",
"serde_core", "serde_core",
@@ -446,14 +446,14 @@ dependencies = [
"toml_datetime", "toml_datetime",
"toml_parser", "toml_parser",
"toml_writer", "toml_writer",
"winnow 0.7.15", "winnow",
] ]
[[package]] [[package]]
name = "toml_datetime" 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" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347" checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
dependencies = [ dependencies = [
"serde_core", "serde_core",
] ]
@@ -464,7 +464,7 @@ version = "1.1.2+spec-1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526" checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
dependencies = [ dependencies = [
"winnow 1.0.2", "winnow",
] ]
[[package]] [[package]]
@@ -525,12 +525,6 @@ dependencies = [
"windows-link", "windows-link",
] ]
[[package]]
name = "winnow"
version = "0.7.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
[[package]] [[package]]
name = "winnow" name = "winnow"
version = "1.0.2" version = "1.0.2"
+1 -1
View File
@@ -25,7 +25,7 @@ log = { version = "0.4", features = ["std"] }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" serde_json = "1.0"
toml = "0.9" toml = "1.0"
# backends # backends
alpm = { version = "5.0", optional = true } alpm = { version = "5.0", optional = true }
+1 -1
View File
@@ -2,9 +2,9 @@ Release Checklist
----------------- -----------------
* Ensure local `main` is up to date with respect to `origin/main`. * Ensure local `main` is up to date with respect to `origin/main`.
* Run `cargo update` and review dependency updates. * 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. * Run `cargo outdated` and review semver incompatible updates.
Unless there is a strong motivation otherwise, review and update every dependency. 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". * Update the date and version in all man pages: "chore(release): bump man pages".
* Run `cargo release -p pacdef <version>`. * Run `cargo release -p pacdef <version>`.
Verify everything works as expected. Verify everything works as expected.