From 00bcc22d83944141f4a061c4ee36aca441a117da Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Jul 2025 18:19:39 +0000 Subject: [PATCH] Update toml_edit requirement from 0.22 to 0.23 Updates the requirements on [toml_edit](https://github.com/toml-rs/toml) to permit the latest version. - [Commits](https://github.com/toml-rs/toml/compare/v0.22.0...v0.23.0) --- updated-dependencies: - dependency-name: toml_edit dependency-version: 0.23.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- 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 f5e57e00..6a375cce 100644 --- a/tools/codegen/Cargo.toml +++ b/tools/codegen/Cargo.toml @@ -16,7 +16,7 @@ serde_json = "1" sha2 = "0.10" spdx = "0.10" tar = "0.4" -toml_edit = { version = "0.22", default-features = false, features = ["parse", "serde"] } +toml_edit = { version = "0.23", default-features = false, features = ["parse", "serde"] } # TODO: call curl command instead of using ureq? ureq = { version = "2", features = ["json"] }