From a37f816cffdcb2606ffbf5fe357a2b082a46c5cd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Aug 2026 18:59:07 +0000 Subject: [PATCH] deps: bump toml from 0.9.12+spec-1.1.0 to 1.1.4+spec-1.1.0 Bumps [toml](https://github.com/toml-rs/toml) from 0.9.12+spec-1.1.0 to 1.1.4+spec-1.1.0. - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.9.12...toml-v1.1.4) --- updated-dependencies: - dependency-name: toml dependency-version: 1.1.4+spec-1.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 42 ++++++------------------------------------ api/Cargo.toml | 2 +- sources/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 38 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 68faf84..61ba45d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1778,7 +1778,7 @@ dependencies = [ "tinyagents", "tinycortex-api", "tokio", - "toml 1.1.4+spec-1.1.0", + "toml", "tracing", "uuid", "walkdir", @@ -1822,7 +1822,7 @@ dependencies = [ "sha2 0.11.0", "thiserror 2.0.20", "tokio", - "toml 0.9.12+spec-1.1.0", + "toml", "uuid", ] @@ -1904,7 +1904,7 @@ dependencies = [ "tempfile", "tinymemory-api", "tokio", - "toml 0.9.12+spec-1.1.0", + "toml", "tracing", "uuid", "walkdir", @@ -2016,21 +2016,6 @@ dependencies = [ "tokio", ] -[[package]] -name = "toml" -version = "0.9.12+spec-1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863" -dependencies = [ - "indexmap", - "serde_core", - "serde_spanned", - "toml_datetime 0.7.5+spec-1.1.0", - "toml_parser", - "toml_writer", - "winnow 0.7.15", -] - [[package]] name = "toml" version = "1.1.4+spec-1.1.0" @@ -2040,19 +2025,10 @@ dependencies = [ "indexmap", "serde_core", "serde_spanned", - "toml_datetime 1.1.1+spec-1.1.0", + "toml_datetime", "toml_parser", "toml_writer", - "winnow 1.0.4", -] - -[[package]] -name = "toml_datetime" -version = "0.7.5+spec-1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347" -dependencies = [ - "serde_core", + "winnow", ] [[package]] @@ -2070,7 +2046,7 @@ version = "1.1.3+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56" dependencies = [ - "winnow 1.0.4", + "winnow", ] [[package]] @@ -2613,12 +2589,6 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" -[[package]] -name = "winnow" -version = "0.7.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945" - [[package]] name = "winnow" version = "1.0.4" diff --git a/api/Cargo.toml b/api/Cargo.toml index 8031c85..cf68b27 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -60,7 +60,7 @@ uuid = { version = "1", features = ["v4"] } [dev-dependencies] # The moved `host::` config sections are parsed from TOML in their own tests, # exactly as the host parses them from `config.toml`. -toml = "0.9" +toml = "1.1" # The mandatory-composition tests are async — they drive a `MemoryProvider`. # Dev-only, so it does not touch the forbidden-dependency rule this crate's # manifest enforces for its normal graph (#18 §D4). diff --git a/sources/Cargo.toml b/sources/Cargo.toml index 64d6277..8c04a23 100644 --- a/sources/Cargo.toml +++ b/sources/Cargo.toml @@ -41,7 +41,7 @@ chrono = { version = "0.4", features = ["serde"], optional = true } # The GitHub reader shells out to `git` for clones. tokio = { version = "1", features = ["process", "io-util"], optional = true } # The registry is the host's `sources.toml`: it reads, mutates and rewrites it. -toml = "0.9" +toml = "1.1" # New sources get a generated id. uuid = { version = "1", features = ["v4"] }