Skip to content
Open
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
12 changes: 6 additions & 6 deletions .github/workflows/casper-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
~/.rustup/update-hashes
~/.rustup/settings.toml
~/.cargo/bin/cargo-audit
key: setup-tools-${{ runner.os }}-${{ hashFiles('rust-toolchain.toml', 'smart_contracts/rust-toolchain', 'Makefile') }}
key: setup-tools-${{ runner.os }}-${{ hashFiles('rust-toolchain.toml', 'Makefile') }}
restore-keys: |
setup-tools-${{ runner.os }}-

Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
~/.rustup/update-hashes
~/.rustup/settings.toml
~/.cargo/bin/cargo-audit
key: setup-tools-${{ runner.os }}-${{ hashFiles('rust-toolchain.toml', 'smart_contracts/rust-toolchain', 'Makefile') }}
key: setup-tools-${{ runner.os }}-${{ hashFiles('rust-toolchain.toml', 'Makefile') }}
restore-keys: |
setup-tools-${{ runner.os }}-

Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
~/.rustup/update-hashes
~/.rustup/settings.toml
~/.cargo/bin/cargo-audit
key: setup-tools-${{ runner.os }}-${{ hashFiles('rust-toolchain.toml', 'smart_contracts/rust-toolchain', 'Makefile') }}
key: setup-tools-${{ runner.os }}-${{ hashFiles('rust-toolchain.toml', 'Makefile') }}
restore-keys: |
setup-tools-${{ runner.os }}-

Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
~/.rustup/update-hashes
~/.rustup/settings.toml
~/.cargo/bin/cargo-audit
key: setup-tools-${{ runner.os }}-${{ hashFiles('rust-toolchain.toml', 'smart_contracts/rust-toolchain', 'Makefile') }}
key: setup-tools-${{ runner.os }}-${{ hashFiles('rust-toolchain.toml', 'Makefile') }}
restore-keys: |
setup-tools-${{ runner.os }}-

Expand Down Expand Up @@ -219,7 +219,7 @@ jobs:
~/.rustup/update-hashes
~/.rustup/settings.toml
~/.cargo/bin/cargo-audit
key: setup-tools-${{ runner.os }}-${{ hashFiles('rust-toolchain.toml', 'smart_contracts/rust-toolchain', 'Makefile') }}
key: setup-tools-${{ runner.os }}-${{ hashFiles('rust-toolchain.toml', 'Makefile') }}
restore-keys: |
setup-tools-${{ runner.os }}-

Expand Down Expand Up @@ -264,7 +264,7 @@ jobs:
~/.rustup/update-hashes
~/.rustup/settings.toml
~/.cargo/bin/cargo-audit
key: setup-tools-${{ runner.os }}-${{ hashFiles('rust-toolchain.toml', 'smart_contracts/rust-toolchain', 'Makefile') }}
key: setup-tools-${{ runner.os }}-${{ hashFiles('rust-toolchain.toml', 'Makefile') }}
restore-keys: |
setup-tools-${{ runner.os }}-

Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[toolchain]
channel = "1.98.0"
channel = "1.98.1"
2 changes: 1 addition & 1 deletion smart_contracts/contract/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ All notable changes to this project will be documented in this file. The format
## Unreleased

### Changed
* Smart-contract Wasm builds in this workspace now target `wasm32v1-none` instead of `wasm32-unknown-unknown`. `smart_contracts/contracts/.cargo/config.toml` sets `target = "wasm32v1-none"` and replaces the old `-C target-feature=-bulk-memory` rustflag with `-C link-arg=--import-undefined`; all other flags were dropped since `wasm32v1-none` enforces the Wasm MVP feature set on its own. The repo-root `rust-toolchain.toml` and `smart_contracts/rust-toolchain` were bumped accordingly, moving this workspace off its previously pinned dated nightly onto the `1.98.0` stable channel.
* Smart-contract Wasm builds in this workspace now target `wasm32v1-none` instead of `wasm32-unknown-unknown`. `smart_contracts/contracts/.cargo/config.toml` sets `target = "wasm32v1-none"` and replaces the old `-C target-feature=-bulk-memory` rustflag with `-C link-arg=--import-undefined`; all other flags were dropped since `wasm32v1-none` enforces the Wasm MVP feature set on its own. The repo-root `rust-toolchain.toml` was bumped accordingly, moving this workspace off its previously pinned dated nightly onto the `1.98.0` stable channel.
* `wasm32v1-none` and `-C link-arg=--import-undefined` require a Rust toolchain no older than `nightly-2025-08-03`. This workspace now builds with `1.98.0` stable, which postdates that requirement, but third-party contracts built against this crate's API on their own nightly toolchain must bump to at least `nightly-2025-08-03` (or a later toolchain) to keep building.

## 5.1.1
Expand Down
1 change: 0 additions & 1 deletion smart_contracts/rust-toolchain

This file was deleted.

Loading