2024-01-23 07:48:58 +01:00
|
|
|
# This is the authoritiative configuration of this project's Rust toolchain.
|
|
|
|
#
|
|
|
|
# Other files that need upkeep when this changes:
|
|
|
|
#
|
|
|
|
# * `.gitlab-ci.yml`
|
|
|
|
# * `Cargo.toml`
|
|
|
|
# * `flake.nix`
|
|
|
|
#
|
|
|
|
# Search in those files for `rust-toolchain.toml` to find the relevant places.
|
|
|
|
# If you're having trouble making the relevant changes, bug a maintainer.
|
|
|
|
|
|
|
|
[toolchain]
|
|
|
|
channel = "1.70.0"
|
|
|
|
components = [
|
|
|
|
# For rust-analyzer
|
|
|
|
"rust-src",
|
|
|
|
]
|
2024-01-23 20:10:23 +01:00
|
|
|
targets = [
|
|
|
|
"x86_64-unknown-linux-gnu",
|
2024-01-23 20:22:18 +01:00
|
|
|
"x86_64-unknown-linux-musl",
|
2024-01-23 20:49:52 +01:00
|
|
|
"aarch64-unknown-linux-musl",
|
2024-01-23 20:10:23 +01:00
|
|
|
]
|