Add rust-toolchain configuration for project dependencies management

This commit is contained in:
thePR0M3TH3AN
2025-05-21 12:00:51 -04:00
parent 4adf3fd6b6
commit e4c7c18506

5
rust-toolchain.toml Normal file
View File

@@ -0,0 +1,5 @@
# rust-toolchain.toml
[toolchain]
channel = "stable" # or "1.78.0", a specific nightly, etc.
profile = "minimal" # keeps download size small
components = ["rustfmt", "clippy"]