File tree Expand file tree Collapse file tree 10 files changed +0
-11
lines changed
buck2_server_commands/src Expand file tree Collapse file tree 10 files changed +0
-11
lines changed Original file line number Diff line number Diff line change 11
11
#![ feature( once_cell_try) ]
12
12
#![ feature( error_generic_member_access) ]
13
13
#![ feature( if_let_guard) ]
14
- #![ feature( let_chains) ]
15
14
#![ feature( try_blocks) ]
16
15
#![ feature( try_trait_v2) ]
17
16
#![ feature( used_with_arg) ]
Original file line number Diff line number Diff line change 17
17
#![ feature( never_type) ]
18
18
#![ feature( try_trait_v2) ]
19
19
#![ feature( used_with_arg) ]
20
- #![ feature( let_chains) ]
21
20
#![ feature( try_blocks) ]
22
21
23
22
pub mod argv;
Original file line number Diff line number Diff line change 18
18
#![ feature( once_cell_try) ]
19
19
#![ feature( try_blocks) ]
20
20
#![ feature( used_with_arg) ]
21
- #![ feature( let_chains) ]
22
21
23
22
#[ macro_use]
24
23
pub mod error;
Original file line number Diff line number Diff line change 9
9
*/
10
10
11
11
#![ feature( error_generic_member_access) ]
12
- #![ feature( let_chains) ]
13
12
#![ feature( trait_alias) ]
14
13
15
14
pub mod any;
Original file line number Diff line number Diff line change 11
11
// This code is adapted from https://github.com/dtolnay/thiserror licensed under Apache-2.0 or MIT.
12
12
13
13
#![ allow( clippy:: manual_map) ]
14
- #![ feature( let_chains) ]
15
14
16
15
mod ast;
17
16
mod attr;
Original file line number Diff line number Diff line change 14
14
#![ feature( try_blocks) ]
15
15
#![ feature( try_trait_v2) ]
16
16
#![ feature( used_with_arg) ]
17
- #![ feature( let_chains) ]
18
17
19
18
pub mod artifact;
20
19
pub mod artifact_utils;
Original file line number Diff line number Diff line change 13
13
#![ feature( box_patterns) ]
14
14
#![ feature( try_trait_v2) ]
15
15
#![ feature( used_with_arg) ]
16
- #![ feature( let_chains) ]
17
16
18
17
pub mod executors;
19
18
mod incremental_actions_helper;
Original file line number Diff line number Diff line change 8
8
* above-listed licenses.
9
9
*/
10
10
11
- #![ feature( let_chains) ]
12
-
13
11
#[ cfg_attr( target_os = "linux" , path = "linux.rs" ) ]
14
12
#[ cfg_attr( not( target_os = "linux" ) , path = "unsupported.rs" ) ]
15
13
mod impl_;
Original file line number Diff line number Diff line change 13
13
//! Implementation of several server commands.
14
14
15
15
#![ feature( box_patterns) ]
16
- #![ feature( let_chains) ]
17
16
#![ feature( try_blocks) ]
18
17
#![ feature( used_with_arg) ]
19
18
Original file line number Diff line number Diff line change 8
8
* above-listed licenses.
9
9
*/
10
10
11
- #![ feature( let_chains) ]
12
11
#![ feature( error_generic_member_access) ]
13
12
#![ feature( used_with_arg) ]
14
13
#![ feature( anonymous_lifetime_in_impl_trait) ]
You can’t perform that action at this time.
0 commit comments