From 192835636533ceed4fb5986a50fc729c4e6b6a9c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Jun 2026 23:05:33 +0000 Subject: [PATCH 1/2] Bump rust-toolchain from 1.91 to 1.96 Bumps [rust-toolchain](https://github.com/rust-lang/rust) from 1.91 to 1.96. - [Release notes](https://github.com/rust-lang/rust/releases) - [Changelog](https://github.com/rust-lang/rust/blob/main/RELEASES.md) - [Commits](https://github.com/rust-lang/rust/compare/1.91.0...1.96.0) --- updated-dependencies: - dependency-name: rust-toolchain dependency-version: '1.96' dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- rust-toolchain.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 798c4ad..d41f3c6 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "1.91" +channel = "1.96" targets = [ "wasm32-unknown-unknown", "wasm32-wasip2" ] From c2c8740cad254316850206ab30a822b385fe7bd1 Mon Sep 17 00:00:00 2001 From: Scott Andrews Date: Mon, 8 Jun 2026 19:13:28 -0400 Subject: [PATCH 2/2] drop unused symbols Signed-off-by: Scott Andrews --- components/lifecycle-host-cli/src/lib.rs | 2 +- tests/service-cli/src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/lifecycle-host-cli/src/lib.rs b/components/lifecycle-host-cli/src/lib.rs index 40b95ff..6db92c7 100644 --- a/components/lifecycle-host-cli/src/lib.rs +++ b/components/lifecycle-host-cli/src/lib.rs @@ -1,4 +1,4 @@ -use clap::{command, Parser, Subcommand}; +use clap::{Parser, Subcommand}; use componentized::services::lifecycle; use componentized::services::types::{ Credential, Error, Request, Scope, ServiceBindingId, ServiceInstanceId, Tier, diff --git a/tests/service-cli/src/main.rs b/tests/service-cli/src/main.rs index 9b1ed31..0890be6 100644 --- a/tests/service-cli/src/main.rs +++ b/tests/service-cli/src/main.rs @@ -1,4 +1,4 @@ -use clap::{command, Args, Parser, Subcommand}; +use clap::{Args, Parser, Subcommand}; use componentized::services::credential_admin::{destroy, publish}; use componentized::services::credential_store::fetch; use componentized::services::lifecycle;