From 44ad71dd7cb4121238d18542448f2d0bda0fc3fc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 13 Feb 2026 16:23:28 +0000 Subject: [PATCH] codegen: Update toml requirement from 0.9 to 1 (#1512) Updates the requirements on [toml](https://github.com/toml-rs/toml) to permit the latest version. - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.9.0...toml-v1.0.0) --- updated-dependencies: - dependency-name: toml dependency-version: 1.0.0+spec-1.1.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Taiki Endo --- tools/codegen/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/codegen/Cargo.toml b/tools/codegen/Cargo.toml index 9ee45aca..430da4e9 100644 --- a/tools/codegen/Cargo.toml +++ b/tools/codegen/Cargo.toml @@ -16,7 +16,7 @@ serde_derive = "1" serde_json = "1" spdx = "0.13" tar = "0.4" -toml = { version = "0.9", default-features = false, features = ["parse", "serde"] } +toml = { version = "1", default-features = false, features = ["parse", "serde"] } # TODO: call curl command instead of using ureq? ureq = { version = "2", features = ["json"] }