Skip to content

Commit a825813

Browse files
Pin Rust toolchain version to v1.66
Newer toolchains cause stack overflow errors in some tests. That may be related to a memory alignment change in Rust v1.67 (rust-lang/rust#102750)
1 parent 8c4fbe9 commit a825813

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions-rs/toolchain@v1
1515
with:
1616
profile: minimal
17-
toolchain: stable
17+
toolchain: 1.66
1818
override: true
1919
components: rustfmt, clippy
2020

@@ -43,7 +43,7 @@ jobs:
4343
uses: actions-rs/toolchain@v1
4444
with:
4545
profile: minimal
46-
toolchain: stable
46+
toolchain: 1.66
4747
override: true
4848
components: rustfmt, clippy
4949

rust-toolchain.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[toolchain]
2+
channel = "1.66"
3+

0 commit comments

Comments
 (0)