Files
airi/rust-toolchain.toml
RainbowBirdandNeko Ayaka 6c64dca345 fix: cargo toolchain (#238)
---------

Co-authored-by: Neko Ayaka <neko@ayaka.moe>
2025-06-28 13:34:35 +08:00

21 lines
432 B
TOML

# https://rust-lang.github.io/rustup/overrides.html#the-toolchain-file
[toolchain]
channel = "nightly-2025-05-25"
# https://rust-lang.github.io/rustup/concepts/components.html
components = [
"rustc",
"cargo",
"rustfmt",
"rust-analyzer",
"clippy"
]
targets = [
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-pc-windows-msvc"
]
profile = "minimal"