From ffae49ba9cee6314cfa304a74f32a50dc58831af Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 18 Mar 2026 19:07:22 +0000 Subject: [PATCH] Bump config from 0.15.21 to 0.15.22 Bumps [config](https://github.com/rust-cli/config-rs) from 0.15.21 to 0.15.22. - [Changelog](https://github.com/rust-cli/config-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/config-rs/compare/v0.15.21...v0.15.22) --- updated-dependencies: - dependency-name: config dependency-version: 0.15.22 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 23 ++++++++++++++++------- Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 18e1940..86cdaaf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -122,7 +122,7 @@ dependencies = [ "serde", "serde_derive", "unicode-ident", - "winnow", + "winnow 0.7.15", ] [[package]] @@ -321,9 +321,9 @@ dependencies = [ [[package]] name = "config" -version = "0.15.21" +version = "0.15.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fe5feec195269515c4722937cd7ffcfe7b4205d18d2e6577b7223ecb159ab00" +checksum = "8e68cfe19cd7d23ffde002c24ffa5cda73931913ef394d5eaaa32037dc940c0c" dependencies = [ "async-trait", "convert_case", @@ -335,7 +335,7 @@ dependencies = [ "serde_core", "serde_json", "toml", - "winnow", + "winnow 1.0.0", "yaml-rust2", ] @@ -490,7 +490,7 @@ dependencies = [ "serde", "thiserror 2.0.17", "time", - "winnow", + "winnow 0.7.15", ] [[package]] @@ -2020,7 +2020,7 @@ dependencies = [ "serde_spanned", "toml_datetime", "toml_parser", - "winnow", + "winnow 0.7.15", ] [[package]] @@ -2038,7 +2038,7 @@ version = "1.0.9+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4" dependencies = [ - "winnow", + "winnow 0.7.15", ] [[package]] @@ -2488,6 +2488,15 @@ dependencies = [ "memchr", ] +[[package]] +name = "winnow" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a90e88e4667264a994d34e6d1ab2d26d398dcdca8b7f52bec8668957517fc7d8" +dependencies = [ + "memchr", +] + [[package]] name = "wit-bindgen" version = "0.46.0" diff --git a/Cargo.toml b/Cargo.toml index d6065df..e10a439 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ askama = "0.15.4" axum = { version = "0.8.8", features = ["macros"] } axum-extra = { version = "0.12.5", features = ["cookie", "cookie-private"] } base64 = "0.22.1" -config = { version = "0.15.21", features = ["toml"] } +config = { version = "0.15.22", features = ["toml"] } cookie = { version = "0.18.1", features = ["private"] } duration-str = "0.21.0" futures = "0.3.32"