rust-toolchain.toml

 1[toolchain]
 2channel = "1.87"
 3profile = "minimal"
 4components = [ "rustfmt", "clippy" ]
 5targets = [
 6    "x86_64-apple-darwin",
 7    "aarch64-apple-darwin",
 8    "x86_64-unknown-linux-gnu",
 9    "x86_64-pc-windows-msvc",
10    "wasm32-wasip2", # extensions
11    "x86_64-unknown-linux-musl", # remote server
12]