From 1eb50937d50b477e981deb486e52357d808ccbbd Mon Sep 17 00:00:00 2001 From: Jonathan de Jong Date: Tue, 17 Aug 2021 15:30:24 +0200 Subject: [PATCH] Switch to using `rust-toolchain.toml` file --- rust-toolchain | 1 - rust-toolchain.toml | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) delete mode 100644 rust-toolchain create mode 100644 rust-toolchain.toml diff --git a/rust-toolchain b/rust-toolchain deleted file mode 100644 index bf867e0a..00000000 --- a/rust-toolchain +++ /dev/null @@ -1 +0,0 @@ -nightly diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 00000000..8e275b74 --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,3 @@ +[toolchain] +channel = "nightly" +components = ["rustfmt", "clippy"]