Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MSRV 1.70 #551

Merged
merged 1 commit into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
matrix:
toolchain:
- stable
- 1.67.0 # MSRV
- 1.70.0 # MSRV
steps:
- uses: actions/checkout@v1
- uses: dtolnay/rust-toolchain@master
Expand All @@ -34,7 +34,7 @@ jobs:
matrix:
toolchain:
- stable
- 1.67.0 # MSRV
- 1.70.0 # MSRV
steps:
- uses: actions/checkout@v1
- uses: dtolnay/rust-toolchain@master
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yubihsm"
version = "0.42.1"
version = "0.43.0-pre"
description = """
Pure Rust client for YubiHSM2 devices with support for HTTP and
USB-based access to the device. Supports most HSM functionality
Expand All @@ -14,7 +14,7 @@ readme = "README.md"
categories = ["cryptography", "hardware-support"]
keywords = ["ecdsa", "ed25519", "hmac", "hsm", "yubikey"]
edition = "2021"
rust-version = "1.67"
rust-version = "1.70"

[dependencies]
aes = { version = "0.8", features = ["zeroize"] }
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ or endorsed by Yubico (although whoever runs their Twitter account

## Minimum Supported Rust Version

This crate requires Rust **1.57** or newer.
This crate requires Rust **1.70** or newer.

## Supported Commands

Expand Down Expand Up @@ -159,7 +159,7 @@ See [LICENSE-APACHE](LICENSE-APACHE) and [LICENSE-MIT](LICENSE-MIT) for details.
[deps-image]: https://deps.rs/repo/github/iqlusioninc/yubihsm.rs/status.svg
[deps-link]: https://deps.rs/repo/github/iqlusioninc/yubihsm.rs
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
[rustc-image]: https://img.shields.io/badge/rustc-1.67+-blue.svg
[rustc-image]: https://img.shields.io/badge/rustc-1.70+-blue.svg

[//]: # (general links)

Expand Down
Loading