From e00e0e7513ad9e6d8c16108fa6f11c21829baaed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Mar 2026 09:19:06 +0000 Subject: [PATCH] chore(deps)(deps): bump config from 0.14.1 to 0.15.19 Bumps [config](https://github.com/rust-cli/config-rs) from 0.14.1 to 0.15.19. - [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.19) --- updated-dependencies: - dependency-name: config dependency-version: 0.15.19 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 76 +++----------------------- crates/terraphim_validation/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 70 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e7c8012f..2a5b675e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1198,25 +1198,6 @@ dependencies = [ "crossbeam-utils", ] -[[package]] -name = "config" -version = "0.14.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68578f196d2a33ff61b27fae256c3164f65e36382648e30666dde05b8cc9dfdf" -dependencies = [ - "async-trait", - "convert_case 0.6.0", - "json5", - "nom", - "pathdiff", - "ron 0.8.1", - "rust-ini 0.20.0", - "serde", - "serde_json", - "toml 0.8.23", - "yaml-rust2 0.8.1", -] - [[package]] name = "config" version = "0.15.19" @@ -1227,14 +1208,14 @@ dependencies = [ "convert_case 0.6.0", "json5", "pathdiff", - "ron 0.12.0", - "rust-ini 0.21.3", + "ron", + "rust-ini", "serde-untagged", "serde_core", "serde_json", "toml 0.9.12+spec-1.1.0", "winnow", - "yaml-rust2 0.10.4", + "yaml-rust2", ] [[package]] @@ -3211,7 +3192,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" dependencies = [ "ahash 0.8.12", - "allocator-api2", ] [[package]] @@ -3236,15 +3216,6 @@ dependencies = [ "foldhash 0.2.0", ] -[[package]] -name = "hashlink" -version = "0.8.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" -dependencies = [ - "hashbrown 0.14.5", -] - [[package]] name = "hashlink" version = "0.9.1" @@ -6624,7 +6595,7 @@ dependencies = [ "quick-xml 0.37.5", "rand 0.8.5", "reqwest 0.12.28", - "rust-ini 0.21.3", + "rust-ini", "serde", "serde_json", "sha1", @@ -6875,18 +6846,6 @@ dependencies = [ "syn 2.0.117", ] -[[package]] -name = "ron" -version = "0.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94" -dependencies = [ - "base64 0.21.7", - "bitflags 2.11.0", - "serde", - "serde_derive", -] - [[package]] name = "ron" version = "0.12.0" @@ -6984,16 +6943,6 @@ dependencies = [ "walkdir", ] -[[package]] -name = "rust-ini" -version = "0.20.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e0698206bcb8882bf2a9ecb4c1e7785db57ff052297085a6efd4fe42302068a" -dependencies = [ - "cfg-if", - "ordered-multimap", -] - [[package]] name = "rust-ini" version = "0.21.3" @@ -8257,7 +8206,7 @@ version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c1c97747dbf44bb1ca44a561ece23508e99cb592e862f22222dcf42f51d1e451" dependencies = [ - "heck 0.5.0", + "heck 0.4.1", "proc-macro2", "quote", "syn 2.0.117", @@ -9113,7 +9062,7 @@ dependencies = [ "async-trait", "chrono", "clap", - "config 0.15.19", + "config", "dashmap 6.1.0", "env_logger", "fastrand", @@ -10079,7 +10028,7 @@ dependencies = [ "bollard", "chrono", "clap", - "config 0.14.1", + "config", "dirs 5.0.1", "env_logger", "gethostname", @@ -12162,17 +12111,6 @@ dependencies = [ "lzma-sys", ] -[[package]] -name = "yaml-rust2" -version = "0.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8902160c4e6f2fb145dbe9d6760a75e3c9522d8bf796ed7047c85919ac7115f8" -dependencies = [ - "arraydeque", - "encoding_rs", - "hashlink 0.8.4", -] - [[package]] name = "yaml-rust2" version = "0.10.4" diff --git a/crates/terraphim_validation/Cargo.toml b/crates/terraphim_validation/Cargo.toml index 4d9b9082..45099ea5 100644 --- a/crates/terraphim_validation/Cargo.toml +++ b/crates/terraphim_validation/Cargo.toml @@ -29,7 +29,7 @@ terraphim_server = { path = "../../terraphim_server" } # Configuration and CLI clap = { version = "4.0", features = ["derive", "env"] } -config = "0.14" +config = "0.15" toml = "0.8" env_logger = "0.11"