From 1d1c96c6aa665f583df6471e66f22a4aa8b3f7de Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 20:28:32 +0000 Subject: [PATCH] deps(deps): update toml requirement from 0.9 to 1.1 Updates the requirements on [toml](https://github.com/toml-rs/toml) to permit the latest version. - [Commits](https://github.com/toml-rs/toml/commits/toml-v1.1.0) --- updated-dependencies: - dependency-name: toml dependency-version: 1.1.0+spec-1.1.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- aikit-sdk/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 87ada9a..9a3304e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,7 +50,7 @@ tempfile = "3.10" atty = "0.2" # TOML parsing -toml = "0.9" +toml = "1.1" # Date/time handling chrono = { version = "0.4", features = ["serde"] } diff --git a/aikit-sdk/Cargo.toml b/aikit-sdk/Cargo.toml index 0f1ca16..f908007 100644 --- a/aikit-sdk/Cargo.toml +++ b/aikit-sdk/Cargo.toml @@ -11,7 +11,7 @@ categories = ["command-line-utilities"] [dependencies] glob = "0.3" walkdir = "2" -toml = "0.8" +toml = "1.1" serde = { version = "1.0", features = ["derive"] } reqwest = { version = "0.12", default-features = false, features = ["blocking", "rustls-tls"] } zip = "2.3"