Skip to content

Commit 995da0e

Browse files
authored
Merge pull request #294 from parallaxsecond/wiktor-k-patch-1
Set installed toolchain as default and bump MSRV to 1.77
2 parents 85dc806 + 8b1a132 commit 995da0e

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,14 @@ jobs:
6060
- riscv64gc-unknown-linux-gnu
6161
toolchain:
6262
- stable
63-
- "1.66.0" # MSRV
63+
- "1.77" # MSRV
6464
steps:
6565
- uses: actions/checkout@v4
6666
- name: Setup Rust toolchain
6767
uses: actions-rs/toolchain@v1
6868
with:
6969
toolchain: ${{ matrix.toolchain }}
70+
default: true
7071
- name: Install Rust target
7172
run: rustup target add ${{ matrix.target }}
7273
- name: Check source
@@ -96,13 +97,14 @@ jobs:
9697
- x86_64-unknown-linux-gnu
9798
toolchain:
9899
- stable
99-
- "1.66.0" # MSRV
100+
- "1.77" # MSRV
100101
steps:
101102
- uses: actions/checkout@v4
102103
- name: Setup Rust toolchain
103104
uses: actions-rs/toolchain@v1
104105
with:
105106
toolchain: ${{ matrix.toolchain }}
107+
default: true
106108
- name: Install SoftHSM
107109
run: |
108110
sudo apt-get update -y -qq &&

cryptoki-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ categories = ["api-bindings", "external-ffi-bindings", "cryptography", "hardware
1010
license = "Apache-2.0"
1111
repository = "https://github.com/parallaxsecond/rust-cryptoki"
1212
documentation = "https://docs.rs/crate/cryptoki-sys"
13-
rust-version = "1.66.0"
13+
rust-version = "1.77"
1414

1515
[build-dependencies]
1616
bindgen = { version = "0.70.1", optional = true }

cryptoki/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ categories = ["api-bindings", "external-ffi-bindings", "cryptography", "hardware
1010
license = "Apache-2.0"
1111
repository = "https://github.com/parallaxsecond/rust-cryptoki"
1212
documentation = "https://docs.rs/crate/cryptoki"
13-
rust-version = "1.66.0"
13+
rust-version = "1.77"
1414

1515
[dependencies]
1616
bitflags = "1.3"

0 commit comments

Comments
 (0)