Remove redundant install Rust steps

Those were not installing Rust but configuring it via rustup, and
those configurations were done on `stable` toolchain which is not what we use (see rust-toolchain.toml)

co-authored-by: Piotr <piotr@zed.dev>
This commit is contained in:
Kirill Bulatov 2024-01-11 14:01:42 +02:00
parent a5dd2535f1
commit 41bc49af36
7 changed files with 47 additions and 77 deletions

View file

@ -1,4 +1,5 @@
[toolchain]
channel = "1.75"
profile = "minimal"
components = [ "rustfmt", "clippy" ]
targets = [ "x86_64-apple-darwin", "aarch64-apple-darwin", "wasm32-wasi" ]