
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
8 lines
183 B
TOML
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
|
|
]
|