Skip to content

Commit 7a89050

Browse files
committed
Update rust-toolchain
Also update the rustfmt option fn_args_density to fn_args_layout. See rust-lang/rustfmt#3581. type_alias_enum_variants is apparently now in stable, so there's no need to require it as a feature.
1 parent 6eba07a commit 7a89050

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

rust-toolchain

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nightly-2019-05-01
1+
nightly-2019-07-18

rust_src/rustfmt.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ disable_all_formatting = false
1212
empty_item_single_line = true
1313
error_on_line_overflow = true
1414
error_on_unformatted = false
15-
fn_args_density = "Tall"
15+
fn_args_layout = "Tall"
1616
fn_single_line = false
1717
force_explicit_abi = true
1818
force_multiline_blocks = false

rust_src/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
#![feature(slice_patterns)]
1818
#![feature(specialization)]
1919
#![feature(stmt_expr_attributes)]
20-
#![feature(type_alias_enum_variants)]
2120
#![feature(untagged_unions)]
2221

2322
extern crate errno;

0 commit comments

Comments
 (0)