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

Update MSRV to 1.81 #332

Merged
merged 2 commits into from
Dec 18, 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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
features: default
# MSRV
- os: ubuntu-22.04
toolchain: 1.75.0
toolchain: 1.81.0
features: default
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ keywords = [
]
description = "A pure-Rust SDK for accessing IronCore's privacy platform"
edition = "2021"
rust-version = "1.75.0"
rust-version = "1.81.0"

[dependencies]
base64 = "0.22"
Expand Down
24 changes: 12 additions & 12 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
profile = "default"
channel = "1.79.0"
channel = "1.81.0"
components = ["rust-src", "rust-analyzer"]
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ impl IronOxide {
/// - `rotations` - PrivateKeyRotationCheckResult that holds all users and groups to be rotated
/// - `password` - Password to unlock the current user's user master key
/// - `timeout` - timeout for rotate_all. This is a separate timeout from the SDK-wide timeout as it is
/// expected that this operation might take significantly longer than other operations.
/// expected that this operation might take significantly longer than other operations.
pub async fn rotate_all(
&self,
rotations: &PrivateKeyRotationCheckResult,
Expand Down
Loading