Skip to content

Commit 46b711a

Browse files
cjlongoriafacebook-github-bot
authored andcommitted
remove let_chain feature
Summary: X-link: meta-pytorch/monarch#1388 let_chains were stabilized in 1.88.0 for edition 2024 and removed in 1.90.0 rust-lang/rust#132833 rust-lang/rust#143214 Reviewed By: dtolnay Differential Revision: D83221093 fbshipit-source-id: 6fb40aa7e1c282f453394db5b7f0dab1282c2e35
1 parent 5518954 commit 46b711a

File tree

10 files changed

+0
-11
lines changed

10 files changed

+0
-11
lines changed

app/buck2_client_ctx/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
#![feature(once_cell_try)]
1212
#![feature(error_generic_member_access)]
1313
#![feature(if_let_guard)]
14-
#![feature(let_chains)]
1514
#![feature(try_blocks)]
1615
#![feature(try_trait_v2)]
1716
#![feature(used_with_arg)]

app/buck2_common/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
#![feature(never_type)]
1818
#![feature(try_trait_v2)]
1919
#![feature(used_with_arg)]
20-
#![feature(let_chains)]
2120
#![feature(try_blocks)]
2221

2322
pub mod argv;

app/buck2_core/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
#![feature(once_cell_try)]
1919
#![feature(try_blocks)]
2020
#![feature(used_with_arg)]
21-
#![feature(let_chains)]
2221

2322
#[macro_use]
2423
pub mod error;

app/buck2_error/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
*/
1010

1111
#![feature(error_generic_member_access)]
12-
#![feature(let_chains)]
1312
#![feature(trait_alias)]
1413

1514
pub mod any;

app/buck2_error_derive/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
// This code is adapted from https://github.com/dtolnay/thiserror licensed under Apache-2.0 or MIT.
1212

1313
#![allow(clippy::manual_map)]
14-
#![feature(let_chains)]
1514

1615
mod ast;
1716
mod attr;

app/buck2_execute/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
#![feature(try_blocks)]
1515
#![feature(try_trait_v2)]
1616
#![feature(used_with_arg)]
17-
#![feature(let_chains)]
1817

1918
pub mod artifact;
2019
pub mod artifact_utils;

app/buck2_execute_impl/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#![feature(box_patterns)]
1414
#![feature(try_trait_v2)]
1515
#![feature(used_with_arg)]
16-
#![feature(let_chains)]
1716

1817
pub mod executors;
1918
mod incremental_actions_helper;

app/buck2_miniperf/src/main.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
* above-listed licenses.
99
*/
1010

11-
#![feature(let_chains)]
12-
1311
#[cfg_attr(target_os = "linux", path = "linux.rs")]
1412
#[cfg_attr(not(target_os = "linux"), path = "unsupported.rs")]
1513
mod impl_;

app/buck2_server_commands/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
//! Implementation of several server commands.
1414
1515
#![feature(box_patterns)]
16-
#![feature(let_chains)]
1716
#![feature(try_blocks)]
1817
#![feature(used_with_arg)]
1918

app/buck2_server_ctx/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
* above-listed licenses.
99
*/
1010

11-
#![feature(let_chains)]
1211
#![feature(error_generic_member_access)]
1312
#![feature(used_with_arg)]
1413
#![feature(anonymous_lifetime_in_impl_trait)]

0 commit comments

Comments
 (0)