From 403632df76772a861c3b9de2d930d74d5b4e0fcd Mon Sep 17 00:00:00 2001 From: "Tony Arcieri (iqlusion)" Date: Thu, 2 Apr 2026 13:59:53 -0600 Subject: [PATCH] yubikey v0.9.0-pre.0 (#666) This prerelease includes crates from the new RustCrypto release series including prereleases for crates which haven't yet received a new stable release. It also includes preliminary Curve25519/Ed25519 support. --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- cli/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bbd51fc..fa1cfbd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "aes" @@ -1429,7 +1429,7 @@ dependencies = [ [[package]] name = "yubikey" -version = "0.9.0-pre" +version = "0.9.0-pre.0" dependencies = [ "aes", "base16ct 0.2.0", diff --git a/Cargo.toml b/Cargo.toml index 41bc080..18a67a1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yubikey" -version = "0.9.0-pre" +version = "0.9.0-pre.0" description = """ Pure Rust cross-platform host-side driver for YubiKey devices from Yubico with support for hardware-backed public-key decryption and digital signatures using diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 6677907..9f7973e 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -23,4 +23,4 @@ once_cell = "1" sha2.workspace = true termcolor = "1" x509-cert.workspace = true -yubikey = { version = "=0.9.0-pre", path = ".." } +yubikey = { version = "=0.9.0-pre.0", path = ".." }