From 91c3e8e9d6f100d69948ac9f1c355dca28a7d633 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 18 Jul 2026 10:17:37 +0000 Subject: [PATCH] build(deps): bump the cargo group with 4 updates Updates the requirements on [thiserror](https://github.com/dtolnay/thiserror), [dirs](https://github.com/soc/dirs-rs), [taplo](https://github.com/tamasfe/taplo) and [toml_edit](https://github.com/toml-rs/toml) to permit the latest version. Updates `thiserror` to 2.0.18 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.0...2.0.18) Updates `dirs` to 6.0.0 - [Commits](https://github.com/soc/dirs-rs/commits) Updates `taplo` to 0.14.0 - [Release notes](https://github.com/tamasfe/taplo/releases) - [Commits](https://github.com/tamasfe/taplo/compare/release-taplo-0.13.0...release-taplo-0.14.0) Updates `toml_edit` to 0.25.13+spec-1.1.0 - [Commits](https://github.com/toml-rs/toml/compare/v0.22.0...v0.25.13) --- updated-dependencies: - dependency-name: thiserror dependency-version: 2.0.18 dependency-type: direct:production dependency-group: cargo - dependency-name: dirs dependency-version: 6.0.0 dependency-type: direct:production dependency-group: cargo - dependency-name: taplo dependency-version: 0.14.0 dependency-type: direct:production dependency-group: cargo - dependency-name: toml_edit dependency-version: 0.25.13+spec-1.1.0 dependency-type: direct:production dependency-group: cargo ... Signed-off-by: dependabot[bot] --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index af4ef39..fc8713a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,15 +7,15 @@ description = "Shared TOML config primitives for the curator, warden, and lector repository = "https://github.com/Lockyc/config-core" [dependencies] -thiserror = "1" +thiserror = "2" # `~` resolution for the shared config-path helper (paths.rs). Deliberately only home_dir() — # NOT dirs::config_dir(), which on macOS is ~/Library/Application Support (see paths.rs). -dirs = "5" +dirs = "6" # House-style TOML formatter (see fmt.rs), embedded as a library so a consuming app can format # its own config — no standalone taplo binary required. -taplo = "0.13" +taplo = "0.14" # Atomic in-place rewrite for format_file (temp file in the same dir + rename). tempfile = "3" # Structural, comment-preserving TOML editing for edit::add_tab (append a tab table without # reformatting the rest of the file). -toml_edit = "0.22" +toml_edit = "0.25"