From fa82f940f0db56d7811757915c2f263e9e1d72bf Mon Sep 17 00:00:00 2001 From: Boshen Date: Thu, 27 Jul 2023 12:24:40 +0800 Subject: [PATCH] chore: stable Rust closes #626 --- crates/oxc_minifier/src/lib.rs | 2 -- rust-toolchain.toml | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/crates/oxc_minifier/src/lib.rs b/crates/oxc_minifier/src/lib.rs index b1bf79a98..cf6aff726 100644 --- a/crates/oxc_minifier/src/lib.rs +++ b/crates/oxc_minifier/src/lib.rs @@ -1,7 +1,5 @@ //! ECMAScript Minifier -#![feature(let_chains)] - mod compressor; mod mangler; mod printer; diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 8c60117fc..67054f135 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "nightly-2023-07-15" +channel = "1.71.0" profile = "default"