Skip to content

Commit d9945f8

Browse files
Bump actions/checkout from 5 to 6 (#65)
* Bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * update msrv * update ci msrv --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Craig Colegrove <[email protected]>
1 parent 21a58c6 commit d9945f8

File tree

6 files changed

+19
-21
lines changed

6 files changed

+19
-21
lines changed

.github/workflows/ci.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
rust_version:
1616
- stable
1717
- beta
18-
- 1.85.0 # MSRV
18+
- 1.88.0 # MSRV
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
- uses: IronCoreLabs/rust-toolchain@v1
2222
with:
2323
toolchain: ${{ matrix.rust_version }}
@@ -35,7 +35,7 @@ jobs:
3535
- x86_64-unknown-linux-musl # Alpine Linux x86_64
3636
- wasm32-unknown-unknown
3737
steps:
38-
- uses: actions/checkout@v5
38+
- uses: actions/checkout@v6
3939
- uses: IronCoreLabs/rust-toolchain@v1
4040
with:
4141
targets: ${{ matrix.target }}
@@ -54,7 +54,7 @@ jobs:
5454
- aarch64-apple-ios
5555
- x86_64-apple-darwin # 64-bit OSX
5656
steps:
57-
- uses: actions/checkout@v5
57+
- uses: actions/checkout@v6
5858
- uses: IronCoreLabs/rust-toolchain@v1
5959
with:
6060
targets: ${{ matrix.target }}
@@ -72,7 +72,7 @@ jobs:
7272
target:
7373
- x86_64-pc-windows-msvc
7474
steps:
75-
- uses: actions/checkout@v5
75+
- uses: actions/checkout@v6
7676
- uses: IronCoreLabs/rust-toolchain@v1
7777
with:
7878
targets: ${{ matrix.target }}
@@ -88,9 +88,9 @@ jobs:
8888
matrix:
8989
rust_version:
9090
- stable
91-
- 1.85.0
91+
- 1.88.0
9292
steps:
93-
- uses: actions/checkout@v5
93+
- uses: actions/checkout@v6
9494
- uses: IronCoreLabs/rust-toolchain@v1
9595
with:
9696
toolchain: ${{ matrix.rust_version }}
@@ -106,7 +106,7 @@ jobs:
106106
rust_version:
107107
- stable
108108
steps:
109-
- uses: actions/checkout@v5
109+
- uses: actions/checkout@v6
110110
- uses: IronCoreLabs/rust-toolchain@v1
111111
with:
112112
toolchain: ${{ matrix.rust_version }}
@@ -120,7 +120,7 @@ jobs:
120120
rust_version:
121121
- nightly
122122
steps:
123-
- uses: actions/checkout@v5
123+
- uses: actions/checkout@v6
124124
- uses: IronCoreLabs/rust-toolchain@v1
125125
with:
126126
toolchain: ${{ matrix.rust_version }}

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ readme = "README.md"
1010
categories = ["cryptography", "wasm"]
1111
license = "Apache-2.0"
1212
keywords = ["finite", "field", "crypto", "math"]
13-
rust-version = "1.85.0"
13+
rust-version = "1.88.0"
1414

1515
[dependencies]
1616
num-traits = "0.2.11"

flake.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@
1818
# nix develop
1919
devShell = pkgs.mkShell {
2020
buildInputs = with pkgs;
21-
[ rusttoolchain pkg-config ]
22-
++ pkgs.lib.optionals pkgs.stdenv.isDarwin
23-
[ pkgs.darwin.apple_sdk.frameworks.Security ];
21+
[ rusttoolchain pkg-config ];
2422
};
2523

2624
});

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
22
profile = "default"
3-
channel = "1.85.0"
3+
channel = "1.91.1"

src/digits/ff31.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ macro_rules! fp31 {
709709
}
710710

711711
#[inline]
712-
pub fn iter_bit(&self) -> FpBitIter<$classname> {
712+
pub fn iter_bit(&self) -> FpBitIter<'_, $classname> {
713713
FpBitIter {
714714
p: self.as_ptr(),
715715
index: 0,

0 commit comments

Comments
 (0)