Skip to content

Commit

Permalink
upgrade rust-toolchain to nightly-2024-07-19
Browse files Browse the repository at this point in the history
Fix issue:

Workflow Install AFL (Linux) is installing 0.12.17 afl, which requires
  rustc 1.81 or newer.

This patch upgrades the rust-toolchain to nightly-2024-07-19 (1.81).
  • Loading branch information
IntelCaisui authored and jyao1 committed Dec 18, 2024
1 parent 2cab412 commit bb372d3
Show file tree
Hide file tree
Showing 10 changed files with 38 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1.0.7
with:
profile: minimal
toolchain: nightly-2024-05-02
toolchain: nightly-2024-07-19
override: true
components: rust-src, rustfmt, clippy, llvm-tools-preview

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1.0.7
with:
profile: minimal
toolchain: nightly-2024-05-02
toolchain: nightly-2024-07-19
override: true
components: clippy

Expand All @@ -48,7 +48,7 @@ jobs:
uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1.0.7
with:
profile: minimal
toolchain: nightly-2024-05-02
toolchain: nightly-2024-07-19
override: true
components: rustfmt
- name: Cache
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1.0.7
with:
profile: minimal
toolchain: nightly-2024-05-02
toolchain: nightly-2024-07-19
override: true
components: rustfmt, clippy

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1.0.7
with:
profile: minimal
toolchain: nightly-2024-05-02
toolchain: nightly-2024-07-19
override: true
components: rust-src, rustfmt, clippy, llvm-tools-preview
- name: Checkout sources
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1.0.7
with:
profile: minimal
toolchain: nightly-2024-05-02
toolchain: nightly-2024-07-19
override: true
components: rust-src, rustfmt, clippy
- name: Cache
Expand Down
34 changes: 26 additions & 8 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ sh_script/pre-build.sh

1. Install [RUST](https://www.rust-lang.org/)

Please use nightly-2024-05-02.
Please use nightly-2024-07-19.

2. Install [NASM](https://www.nasm.us/)

Expand Down
1 change: 1 addition & 0 deletions executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ woke = "0"
spin = "0"

[features]
std = []
3 changes: 2 additions & 1 deletion idekm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ conquer-once = { version = "0.3.2", default-features = false }
maybe-async = "0.2.7"

[features]
is_sync = ["spdmlib/is_sync", "maybe-async/is_sync"]
is_sync = ["spdmlib/is_sync", "maybe-async/is_sync"]
std = []
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nightly-2024-05-02
nightly-2024-07-19
1 change: 1 addition & 0 deletions tdisp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ maybe-async = "0.2.7"

[features]
is_sync = ["spdmlib/is_sync", "maybe-async/is_sync"]
std = []

0 comments on commit bb372d3

Please sign in to comment.