21 lines
421 B
TOML
21 lines
421 B
TOML
# https://rust-lang.github.io/rustup/overrides.html#the-toolchain-file
|
|
|
|
[toolchain]
|
|
channel = "nightly"
|
|
# 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"
|