switch to rust 1.67

This commit is contained in:
Anton-4 2023-04-29 19:56:44 +02:00 committed by Folkert
parent b2ce9d1cc6
commit 72c85efc83
No known key found for this signature in database
GPG Key ID: 1F17F6FFD112B97C
7 changed files with 12 additions and 12 deletions

View File

@ -32,8 +32,8 @@ jobs:
- name: zig version - name: zig version
run: zig version run: zig version
- name: install rust nightly 1.66 - name: install rust nightly 1.67
run: rustup install nightly-2022-10-30 run: rustup install nightly-2022-12-09
- name: set up llvm 13 - name: set up llvm 13
run: | run: |

View File

@ -36,8 +36,8 @@ jobs:
- name: zig version - name: zig version
run: zig version run: zig version
- name: install rust nightly 1.66 - name: install rust nightly 1.67
run: rustup install nightly-2022-10-30 run: rustup install nightly-2022-12-09
- name: set up llvm 13 - name: set up llvm 13
run: | run: |

View File

@ -530,7 +530,7 @@ pub fn rebuild_host(
// on windows, we need the nightly toolchain so we can use `-Z export-executable-symbols` // on windows, we need the nightly toolchain so we can use `-Z export-executable-symbols`
// using `+nightly` only works when running cargo through rustup // using `+nightly` only works when running cargo through rustup
let mut cmd = rustup(); let mut cmd = rustup();
cmd.args(["run", "nightly-2022-10-30", "cargo"]); cmd.args(["run", "nightly-2022-12-09", "cargo"]);
cmd cmd
} else { } else {

View File

@ -74,8 +74,8 @@ roc_error_macros::assert_sizeof_wasm!(Call, 44);
roc_error_macros::assert_sizeof_wasm!(CallType, 36); roc_error_macros::assert_sizeof_wasm!(CallType, 36);
roc_error_macros::assert_sizeof_non_wasm!(Literal, 3 * 8); roc_error_macros::assert_sizeof_non_wasm!(Literal, 3 * 8);
roc_error_macros::assert_sizeof_non_wasm!(Expr, 9 * 8); roc_error_macros::assert_sizeof_non_wasm!(Expr, 10 * 8);
roc_error_macros::assert_sizeof_non_wasm!(Stmt, 12 * 8); roc_error_macros::assert_sizeof_non_wasm!(Stmt, 13 * 8);
roc_error_macros::assert_sizeof_non_wasm!(ProcLayout, 5 * 8); roc_error_macros::assert_sizeof_non_wasm!(ProcLayout, 5 * 8);
roc_error_macros::assert_sizeof_non_wasm!(Call, 9 * 8); roc_error_macros::assert_sizeof_non_wasm!(Call, 9 * 8);
roc_error_macros::assert_sizeof_non_wasm!(CallType, 7 * 8); roc_error_macros::assert_sizeof_non_wasm!(CallType, 7 * 8);

View File

@ -115,8 +115,8 @@
"rust-overlay": "rust-overlay" "rust-overlay": "rust-overlay"
}, },
"locked": { "locked": {
"lastModified": 1682761608, "lastModified": 1682784625,
"narHash": "sha256-+6tHbEK8GYDSCLasgawufSLegyJ0cqHV2nfmJICwzrk=", "narHash": "sha256-QUncKiwgpmHajo601NNHOjeUG2/vrGp1oMgxnPhq900=",
"path": "/home/username/gitrepos/roc9/roc", "path": "/home/username/gitrepos/roc9/roc",
"type": "path" "type": "path"
}, },

View File

@ -1,5 +1,5 @@
[toolchain] [toolchain]
channel = "1.66.1" channel = "1.67.1"
profile = "default" profile = "default"

View File

@ -9,9 +9,9 @@
# - update nightly-OLD_DATE in .github/workflows/windows_release_build.yml # - update nightly-OLD_DATE in .github/workflows/windows_release_build.yml
# - update nightly-OLD_DATE in crates/compiler/build/src/link.rs # - update nightly-OLD_DATE in crates/compiler/build/src/link.rs
channel = "1.66.1" # check ^^^ when changing this channel = "1.67.1" # check ^^^ when changing this
# #
# channel = "nightly-2022-10-30" # 1.66.0 nightly to be able to use unstable features # channel = "nightly-2022-12-09" # 1.67.0 nightly to be able to use unstable features
profile = "default" profile = "default"
components = [ components = [
# for usages of rust-analyzer or similar tools inside `nix develop` # for usages of rust-analyzer or similar tools inside `nix develop`