2024-01-26 04:39:59 +00:00
|
|
|
# This is the authoritiative configuration of this project's Rust toolchain.
|
|
|
|
#
|
|
|
|
# Other files that need upkeep when this changes:
|
|
|
|
#
|
|
|
|
# * `.gitlab-ci.yml`
|
2024-03-09 20:45:48 +00:00
|
|
|
# * `.github/workflows/ci.yml`
|
2024-01-26 04:39:59 +00:00
|
|
|
# * `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]
|
2024-05-03 14:59:36 +00:00
|
|
|
channel = "1.77.0"
|
2024-01-26 04:39:59 +00:00
|
|
|
components = [
|
|
|
|
# For rust-analyzer
|
|
|
|
"rust-src",
|
|
|
|
]
|
|
|
|
targets = [
|
|
|
|
"x86_64-unknown-linux-gnu",
|
|
|
|
"x86_64-unknown-linux-musl",
|
|
|
|
"aarch64-unknown-linux-musl",
|
2024-04-28 15:45:42 +00:00
|
|
|
]
|