From 01c0c33451a2dd8a285c3ea9d73db90ba661aa53 Mon Sep 17 00:00:00 2001 From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> Date: Fri, 26 Jul 2024 01:02:54 +0000 Subject: [PATCH] other: include a toolchain file from now on (#1503) --- Cargo.toml | 5 ++--- rust-toolchain.toml | 2 ++ 2 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 rust-toolchain.toml diff --git a/Cargo.toml b/Cargo.toml index 1b53b57e..6c3b3601 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,6 +15,7 @@ build = "build.rs" exclude = [ ".cargo-husky/", ".github/", + ".idea", ".vscode/", "assets/", "desktop/", @@ -33,9 +34,7 @@ exclude = [ "codecov.yml", "CONTRIBUTING.md", "Cross.toml", - "debug.log", - "flamegraph.svg", - "perf.data", + "rust-toolchain.toml", "rustfmt.toml", ] # The oldest version I've tested that should still build - note this is not an official MSRV! diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 00000000..4d2dee85 --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,2 @@ +[toolchain] +channel = "1.80.0"