Remove targets from rust-toolchain.toml

Toolchains in the rust-toolchain.toml file do not actually enforce what toolchains are supported, but specified which toolchains need to be downloaded. This forces each device building the project to download all 4 targets before actually building.
This commit is contained in:
lukas0008
2024-09-06 23:30:15 +02:00
parent b40c2fa988
commit ca2e4e2a9b

View File

@@ -1,9 +1,3 @@
[toolchain]
# Anything in the latest stable version of rust is fine to use.
channel = "stable"
targets = [
"x86_64-apple-darwin",
"x86_64-pc-windows-gnu",
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
]