rust-toolchain.toml

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