Update Rust toolchain config

Remove rust-src as it is not required. Use a minimal profile with
clippy and rustfmt installed, instead of the default profile, as
rust-docs is not needed.

Signed-off-by: Tim Crawford <tcrawford@system76.com>
This commit is contained in:
Tim Crawford 2024-07-05 19:28:16 -06:00 committed by Tim Crawford
parent 926f73d114
commit fa07aeb91c

View file

@ -1,3 +1,4 @@
[toolchain]
channel = "nightly-2024-05-11"
components = ["rust-src"]
components = ["clippy", "rustfmt"]
profile = "minimal"