From 4e12a2fa42f891e92ba02aa71999e43bd06853b1 Mon Sep 17 00:00:00 2001 From: Brian Caswell Date: Wed, 16 Aug 2023 09:38:45 -0400 Subject: [PATCH] remove rust-toolchain.toml (#1320) Instead of specifying the toolchain via `rust-toolchain.toml`, our CI pipelines specify the intended toolchain. For contributor's purposes, this is out of sync with what we verify against for PRs and has contributed to confusion over time. For users of the SDK, this isn't applied. For those, we specify the toolchain needed via setting MSRV in the `Cargo.toml` for the specific crate. Co-authored-by: Brian Caswell --- rust-toolchain.toml | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 rust-toolchain.toml diff --git a/rust-toolchain.toml b/rust-toolchain.toml deleted file mode 100644 index e44d5bfee3..0000000000 --- a/rust-toolchain.toml +++ /dev/null @@ -1,3 +0,0 @@ -[toolchain] -channel = "1.65.0" -components = [ "rustfmt", "clippy" ]