ZIm/rust-toolchain.toml
Max Brunsfeld cd234e28ce
Eliminate host targets from rust toolchain file (#36077)
Only cross-compilation targets need to be listed in the rust toolchain.
So we only need to list the wasi target for extensions, and the musl
target for the linux remote server. Previously, we were causing mac,
linux, and windows target to get installed onto all developer
workstations, which is unnecessary.

Release Notes:

- N/A
2025-08-12 14:36:48 -07:00

8 lines
183 B
TOML

[toolchain]
channel = "1.89"
profile = "minimal"
components = [ "rustfmt", "clippy" ]
targets = [
"wasm32-wasip2", # extensions
"x86_64-unknown-linux-musl", # remote server
]