Skip to content

Commit

Permalink
Downgrade Rust to 1.69.0
Browse files Browse the repository at this point in the history
This avoids an issue where the sign-ext feature is enabled in Rust >=
1.70.0.

[cargo-contract issue](use-ink/cargo-contract#1139)
[rust issue](rust-lang/rust#109807)
  • Loading branch information
doubledup committed Jun 12, 2023
1 parent cd9e049 commit 4d101a5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions flake.lock

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

3 changes: 2 additions & 1 deletion parachain/rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
# - update `channel = "nightly-OLD_DATE"` below
# - update nightly-OLD_DATE in .github/workflows/parachain.yml

channel = "nightly-2023-04-22" # 1.71.0 nightly for unstable features
channel = "nightly-2023-03-04" # 1.69.0 nightly for unstable features and no sign-ext
# for more on the sign-ext issue: https://github.com/paritytech/cargo-contract/issues/1139
targets = [
"wasm32-unknown-unknown",
]
Expand Down

0 comments on commit 4d101a5

Please sign in to comment.