From e4c7c18506296a921897df2539d3ec548363ef11 Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Wed, 21 May 2025 12:00:51 -0400 Subject: [PATCH] Add rust-toolchain configuration for project dependencies management --- rust-toolchain.toml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 rust-toolchain.toml diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 0000000..c02e114 --- /dev/null +++ b/rust-toolchain.toml @@ -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"]