roc/rust-toolchain.toml

23 lines
886 B
TOML
Raw Normal View History

2022-11-14 21:37:25 +03:00
[toolchain]
# How to update version:
# - update `channel = "RUST_VERSION"`
2023-01-17 20:09:16 +03:00
# - update `channel = "RUST_VERSION"` in examples/platform-switching/rust-platform/rust-toolchain.toml
2022-11-14 21:37:25 +03:00
# - to update the nightly version:
# - Find the latest nightly release that matches RUST_VERSION here: https://github.com/oxalica/rust-overlay/tree/master/manifests/nightly/2022
# - update `channel = "nightly-OLD_DATE"` below
# - update nightly-OLD_DATE in .github/workflows/windows.yml
# - update nightly-OLD_DATE in crates/compiler/build/src/link.rs
2023-01-17 20:09:16 +03:00
channel = "1.65.0" # check ^^^ when changing this
2022-11-14 21:37:25 +03:00
#
2023-01-17 20:09:16 +03:00
# channel = "nightly-2022-09-17" # 1.65 nightly to be able to use unstable features
2022-11-14 21:37:25 +03:00
profile = "default"
components = [
# for usages of rust-analyzer or similar tools inside `nix develop`
"rust-src"
]
targets = [
"wasm32-wasi", # for test_wasm.sh
]