lprs/rust-toolchain.toml
Awiteb a84a85a7a6
chore(DX): Add rust-toolchain.toml
I see is better to develop the project in `nightly` channel
to take advantage of rustfmt and rust-analyzer features.
2024-05-07 00:16:31 +03:00

13 lines
308 B
TOML

[toolchain]
# We use nightly in development only, the project will always be compliant with
# the latest stable release and the MSRV as defined in `Cargo.toml` file.
channel = "nightly-2024-05-05"
components = [
"rustc",
"cargo",
"rust-std",
"rust-src",
"rustfmt",
"rust-analyzer",
"clippy",
]