From 138b317252ff1da67c3a95ac30f45f21b6109d52 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Feb 2026 09:25:09 +0000 Subject: [PATCH] chore(deps): bump config from 0.14.1 to 0.15.15 Bumps [config](https://github.com/rust-cli/config-rs) from 0.14.1 to 0.15.15. - [Changelog](https://github.com/rust-cli/config-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/config-rs/compare/v0.14.1...v0.15.15) --- updated-dependencies: - dependency-name: config dependency-version: 0.15.15 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 33 ++++++++++++++++++---------- libs/node-config/Cargo.toml | 2 +- node/Cargo.toml | 2 +- tools/nillion/Cargo.toml | 2 +- tools/share-reconstructor/Cargo.toml | 2 +- 5 files changed, 25 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a89ded44..df5f7bb8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1006,13 +1006,13 @@ dependencies = [ [[package]] name = "config" -version = "0.14.1" +version = "0.15.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68578f196d2a33ff61b27fae256c3164f65e36382648e30666dde05b8cc9dfdf" +checksum = "0faa974509d38b33ff89282db9c3295707ccf031727c0de9772038ec526852ba" dependencies = [ - "nom", "pathdiff", "serde", + "winnow 0.7.14", "yaml-rust2", ] @@ -2357,20 +2357,20 @@ dependencies = [ [[package]] name = "hashlink" -version = "0.8.4" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" +checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af" dependencies = [ "hashbrown 0.14.5", ] [[package]] name = "hashlink" -version = "0.9.1" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af" +checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1" dependencies = [ - "hashbrown 0.14.5", + "hashbrown 0.15.2", ] [[package]] @@ -6805,7 +6805,7 @@ dependencies = [ "serde", "serde_spanned", "toml_datetime", - "winnow", + "winnow 0.6.20", ] [[package]] @@ -7791,6 +7791,15 @@ dependencies = [ "memchr", ] +[[package]] +name = "winnow" +version = "0.7.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829" +dependencies = [ + "memchr", +] + [[package]] name = "winreg" version = "0.50.0" @@ -7859,13 +7868,13 @@ dependencies = [ [[package]] name = "yaml-rust2" -version = "0.8.1" +version = "0.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8902160c4e6f2fb145dbe9d6760a75e3c9522d8bf796ed7047c85919ac7115f8" +checksum = "2462ea039c445496d8793d052e13787f2b90e750b833afee748e601c17621ed9" dependencies = [ "arraydeque", "encoding_rs", - "hashlink 0.8.4", + "hashlink 0.10.0", ] [[package]] diff --git a/libs/node-config/Cargo.toml b/libs/node-config/Cargo.toml index 9b5d5f1f..7fb7ff68 100644 --- a/libs/node-config/Cargo.toml +++ b/libs/node-config/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -config = { version = "0.14", default-features = false, features = ["yaml"] } +config = { version = "0.15", default-features = false, features = ["yaml"] } serde = "1.0" humantime-serde = "1.1" hex = { version = "0.4", features = ["serde"] } diff --git a/node/Cargo.toml b/node/Cargo.toml index 746c557c..fd4b9a01 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -9,7 +9,7 @@ async-trait = "0.1" axum = "0.7" bincode = "1.3" clap = { version = "4.5", features = ["derive", "env"] } -config = { version = "^0.14", default-features = false, features = ["yaml"] } +config = { version = "^0.15", default-features = false, features = ["yaml"] } chrono = { version = "0.4", features = ["serde"] } rust_decimal = "1.36.0" futures = "0.3" diff --git a/tools/nillion/Cargo.toml b/tools/nillion/Cargo.toml index 87e5afed..8b5ed355 100644 --- a/tools/nillion/Cargo.toml +++ b/tools/nillion/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] anyhow = "1" clap = { version = "4.5", features = ["derive", "env"] } -config = { version = "0.14", default-features = false, features = ["yaml"] } +config = { version = "0.15", default-features = false, features = ["yaml"] } env_logger = "0.11.5" chrono = { version = "0.4", features = ["serde"] } hex = { version = "0.4", features = ["serde"] } diff --git a/tools/share-reconstructor/Cargo.toml b/tools/share-reconstructor/Cargo.toml index d9f2590c..aa23e066 100644 --- a/tools/share-reconstructor/Cargo.toml +++ b/tools/share-reconstructor/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] anyhow = "1" -config = { version = "^0.14", default-features = false, features = ["yaml"] } +config = { version = "^0.15", default-features = false, features = ["yaml"] } num-bigint = "0.4.6" serde = { version = "^1.0", features = ["derive"] } clap = "4.5"