From 2472a1972526afe5f9c2e1cc1e7b6632aab0dd2d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 17:02:55 +0000 Subject: [PATCH] build(deps): bump base64ct from 1.8.0 to 1.8.1 Bumps [base64ct](https://github.com/RustCrypto/formats) from 1.8.0 to 1.8.1. - [Commits](https://github.com/RustCrypto/formats/compare/base64ct/v1.8.0...base64ct/v1.8.1) --- updated-dependencies: - dependency-name: base64ct dependency-version: 1.8.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- ssh-encoding/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index aab8d38..b114d9d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -65,9 +65,9 @@ checksum = "d8b59d472eab27ade8d770dcb11da7201c11234bef9f82ce7aa517be028d462b" [[package]] name = "base64ct" -version = "1.8.0" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba" +checksum = "0e050f626429857a27ddccb31e0aca21356bfa709c04041aefddac081a8f068a" [[package]] name = "bcrypt-pbkdf" diff --git a/ssh-encoding/Cargo.toml b/ssh-encoding/Cargo.toml index c59f695..9514947 100644 --- a/ssh-encoding/Cargo.toml +++ b/ssh-encoding/Cargo.toml @@ -16,7 +16,7 @@ edition = "2024" rust-version = "1.85" [dependencies] -base64ct = { version = "1.7", optional = true } +base64ct = { version = "1.8", optional = true } bigint = { package = "crypto-bigint", version = "0.7.0-rc.10", optional = true, default-features = false, features = ["alloc"] } bytes = { version = "1", optional = true, default-features = false } digest = { version = "0.11.0-rc.4", optional = true, default-features = false }