-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: stop pinning a toolchain version (#131)
* Remove `channel` from `rust-toolchain` * Update Cargo.toml and GitHub workflow * ci: purge Rust cache * ci: install wasm target * Make clippy happy * ci: set toolchain override * Add MSRV guidelines to README
- Loading branch information
Showing
5 changed files
with
15 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,9 @@ version = "0.15.0" | |
version = "0.2.0" | ||
edition = "2021" | ||
authors = ["Aurora Labs <[email protected]>"] | ||
# An update of the MSRV requires updating: | ||
# - `rust-toolchain` files in `near-plugins-derive/tests/contracts/**` | ||
# - the toolchain installed in CI via the `toolchain` parameter of `actions-rs/toolchain@v1` | ||
rust-version = "1.69.0" | ||
description = "Ergonomic plugin system to extend NEAR contracts." | ||
license = "CC0-1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
[toolchain] | ||
channel = "1.69.0" | ||
components = ["clippy", "rustfmt"] | ||
targets = [ "wasm32-unknown-unknown" ] |