From 8abf15bbe43ca22efa0ec89ba3c6ce43b422d970 Mon Sep 17 00:00:00 2001 From: Cj Longoria Date: Tue, 30 Sep 2025 21:56:32 -0700 Subject: [PATCH] remove let_chain feature (#1388) Summary: let_chains were stabilized in 1.88.0 for edition 2024 and removed in 1.90.0 https://github.com/rust-lang/rust/pull/132833 https://github.com/rust-lang/rust/pull/143214 Reviewed By: dtolnay Differential Revision: D83221093 --- hyperactor/src/lib.rs | 1 - hyperactor_mesh/src/lib.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/hyperactor/src/lib.rs b/hyperactor/src/lib.rs index f3453e2b1..9182ec225 100644 --- a/hyperactor/src/lib.rs +++ b/hyperactor/src/lib.rs @@ -65,7 +65,6 @@ #![feature(panic_update_hook)] #![feature(type_alias_impl_trait)] #![feature(trait_alias)] -#![feature(let_chains)] #![deny(missing_docs)] pub mod accum; diff --git a/hyperactor_mesh/src/lib.rs b/hyperactor_mesh/src/lib.rs index 8cc63e45c..3dd36a643 100644 --- a/hyperactor_mesh/src/lib.rs +++ b/hyperactor_mesh/src/lib.rs @@ -11,7 +11,6 @@ #![feature(assert_matches)] #![feature(exit_status_error)] #![feature(impl_trait_in_bindings)] -#![feature(let_chains)] pub mod actor_mesh; pub mod alloc;