-
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.
chore: deploy test contracts with cargo-near (#157)
* chore: deploy test contracts with cargo-near * Update rust-toolchain * Update rust toolchain * Add `no_locked` flag
- Loading branch information
Showing
11 changed files
with
24 additions
and
63 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ on: | |
|
||
env: | ||
RUST_BACKTRACE: full | ||
MSRV: 1.80.0 | ||
MSRV: 1.84.0 | ||
|
||
jobs: | ||
tests: | ||
|
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 |
---|---|---|
|
@@ -13,7 +13,7 @@ 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.80.0" | ||
rust-version = "1.84.0" | ||
description = "Ergonomic plugin system to extend NEAR contracts." | ||
license = "CC0-1.0" | ||
readme = "README.md" | ||
|
@@ -36,3 +36,4 @@ proc-macro2 = "1.0" | |
quote = "1.0.9" | ||
syn = { version = "1.0.69", features = ["full"] } | ||
proc-macro-crate = "0.1.5" | ||
cargo-near-build = "0.4.4" |
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
2 changes: 1 addition & 1 deletion
2
near-plugins-derive/tests/contracts/access_controllable/rust-toolchain
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,4 @@ | ||
[toolchain] | ||
channel = "1.80.0" | ||
channel = "1.84.0" | ||
components = ["clippy", "rustfmt"] | ||
targets = [ "wasm32-unknown-unknown" ] |
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,4 @@ | ||
[toolchain] | ||
channel = "1.80.0" | ||
channel = "1.84.0" | ||
components = ["clippy", "rustfmt"] | ||
targets = [ "wasm32-unknown-unknown" ] |
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,4 @@ | ||
[toolchain] | ||
channel = "1.80.0" | ||
channel = "1.84.0" | ||
components = ["clippy", "rustfmt"] | ||
targets = [ "wasm32-unknown-unknown" ] |
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,4 @@ | ||
[toolchain] | ||
channel = "1.80.0" | ||
channel = "1.84.0" | ||
components = ["clippy", "rustfmt"] | ||
targets = [ "wasm32-unknown-unknown" ] |
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
2 changes: 1 addition & 1 deletion
2
near-plugins-derive/tests/contracts/upgradable_2/rust-toolchain
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,4 @@ | ||
[toolchain] | ||
channel = "1.80.0" | ||
channel = "1.84.0" | ||
components = ["clippy", "rustfmt"] | ||
targets = [ "wasm32-unknown-unknown" ] |
2 changes: 1 addition & 1 deletion
2
near-plugins-derive/tests/contracts/upgradable_state_migration/rust-toolchain
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,4 @@ | ||
[toolchain] | ||
channel = "1.80.0" | ||
channel = "1.84.0" | ||
components = ["clippy", "rustfmt"] | ||
targets = [ "wasm32-unknown-unknown" ] |