Skip to content

Commit 924dbc3

Browse files
committed
Rebase fallout.
1 parent 058fddc commit 924dbc3

File tree

9 files changed

+6
-5
lines changed

9 files changed

+6
-5
lines changed

Diff for: compiler/rustc_borrowck/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
[package]
2-
authors = ["The Rust Project Developers"]
32
name = "rustc_borrowck"
43
version = "0.0.0"
54
edition = "2018"

Diff for: compiler/rustc_borrowck/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#![feature(stmt_expr_attributes)]
1212
#![feature(trusted_step)]
1313
#![feature(try_blocks)]
14+
#![recursion_limit = "256"]
1415

1516
#[macro_use]
1617
extern crate rustc_middle;

Diff for: compiler/rustc_const_eval/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Rust MIR: a lowered representation of Rust.
2323
#![feature(trusted_len)]
2424
#![feature(trusted_step)]
2525
#![feature(try_blocks)]
26+
#![recursion_limit = "256"]
2627

2728
#[macro_use]
2829
extern crate tracing;

Diff for: compiler/rustc_mir_dataflow/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
[package]
2-
authors = ["The Rust Project Developers"]
32
name = "rustc_mir_dataflow"
43
version = "0.0.0"
54
edition = "2018"

Diff for: compiler/rustc_mir_dataflow/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#![feature(once_cell)]
1111
#![feature(stmt_expr_attributes)]
1212
#![feature(trusted_step)]
13+
#![recursion_limit = "256"]
1314

1415
#[macro_use]
1516
extern crate tracing;

Diff for: compiler/rustc_mir_transform/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
[package]
2-
authors = ["The Rust Project Developers"]
32
name = "rustc_mir_transform"
43
version = "0.0.0"
54
edition = "2018"

Diff for: compiler/rustc_mir_transform/src/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(bindings_after_at)]
1+
#![cfg_attr(bootstrap, feature(bindings_after_at))]
22
#![feature(box_patterns)]
33
#![feature(box_syntax)]
44
#![feature(crate_visibility_modifier)]
@@ -12,6 +12,7 @@
1212
#![feature(never_type)]
1313
#![feature(trusted_step)]
1414
#![feature(try_blocks)]
15+
#![recursion_limit = "256"]
1516

1617
#[macro_use]
1718
extern crate tracing;

Diff for: compiler/rustc_monomorphize/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
[package]
2-
authors = ["The Rust Project Developers"]
32
name = "rustc_monomorphize"
43
version = "0.0.0"
54
edition = "2018"

Diff for: compiler/rustc_monomorphize/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#![feature(crate_visibility_modifier)]
44
#![feature(control_flow_enum)]
55
#![feature(in_band_lifetimes)]
6+
#![recursion_limit = "256"]
67

78
#[macro_use]
89
extern crate tracing;

0 commit comments

Comments
 (0)