rust-toolchain.toml 484 B

12345678910111213141516171819
  1. [toolchain]
  2. channel = "1.89.0"
  3. components = [
  4. "rustfmt",
  5. "clippy",
  6. "rust-docs",
  7. "rust-src",
  8. "rust-analyzer",
  9. ]
  10. targets = [
  11. "aarch64-apple-darwin", # macOS Apple Silicon
  12. "x86_64-apple-darwin", # macOS Intel
  13. "x86_64-pc-windows-msvc", # Windows (most common)
  14. "x86_64-unknown-linux-gnu", # Linux x64 (glibc)
  15. "aarch64-unknown-linux-gnu", # Linux ARM64 (e.g. Raspberry Pi / servers)
  16. "aarch64-linux-android",
  17. "aarch64-apple-ios",
  18. ]
  19. profile = "default"