Skip to content

Commit

Permalink
Rebase fallout.
Browse files Browse the repository at this point in the history
  • Loading branch information
cjgillot committed Sep 8, 2021
1 parent 058fddc commit 924dbc3
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 5 deletions.
1 change: 0 additions & 1 deletion compiler/rustc_borrowck/Cargo.toml
@@ -1,5 +1,4 @@
[package]
authors = ["The Rust Project Developers"]
name = "rustc_borrowck"
version = "0.0.0"
edition = "2018"
Expand Down
1 change: 1 addition & 0 deletions compiler/rustc_borrowck/src/lib.rs
Expand Up @@ -11,6 +11,7 @@
#![feature(stmt_expr_attributes)]
#![feature(trusted_step)]
#![feature(try_blocks)]
#![recursion_limit = "256"]

#[macro_use]
extern crate rustc_middle;
Expand Down
1 change: 1 addition & 0 deletions compiler/rustc_const_eval/src/lib.rs
Expand Up @@ -23,6 +23,7 @@ Rust MIR: a lowered representation of Rust.
#![feature(trusted_len)]
#![feature(trusted_step)]
#![feature(try_blocks)]
#![recursion_limit = "256"]

#[macro_use]
extern crate tracing;
Expand Down
1 change: 0 additions & 1 deletion compiler/rustc_mir_dataflow/Cargo.toml
@@ -1,5 +1,4 @@
[package]
authors = ["The Rust Project Developers"]
name = "rustc_mir_dataflow"
version = "0.0.0"
edition = "2018"
Expand Down
1 change: 1 addition & 0 deletions compiler/rustc_mir_dataflow/src/lib.rs
Expand Up @@ -10,6 +10,7 @@
#![feature(once_cell)]
#![feature(stmt_expr_attributes)]
#![feature(trusted_step)]
#![recursion_limit = "256"]

#[macro_use]
extern crate tracing;
Expand Down
1 change: 0 additions & 1 deletion compiler/rustc_mir_transform/Cargo.toml
@@ -1,5 +1,4 @@
[package]
authors = ["The Rust Project Developers"]
name = "rustc_mir_transform"
version = "0.0.0"
edition = "2018"
Expand Down
3 changes: 2 additions & 1 deletion compiler/rustc_mir_transform/src/lib.rs
@@ -1,4 +1,4 @@
#![feature(bindings_after_at)]
#![cfg_attr(bootstrap, feature(bindings_after_at))]
#![feature(box_patterns)]
#![feature(box_syntax)]
#![feature(crate_visibility_modifier)]
Expand All @@ -12,6 +12,7 @@
#![feature(never_type)]
#![feature(trusted_step)]
#![feature(try_blocks)]
#![recursion_limit = "256"]

#[macro_use]
extern crate tracing;
Expand Down
1 change: 0 additions & 1 deletion compiler/rustc_monomorphize/Cargo.toml
@@ -1,5 +1,4 @@
[package]
authors = ["The Rust Project Developers"]
name = "rustc_monomorphize"
version = "0.0.0"
edition = "2018"
Expand Down
1 change: 1 addition & 0 deletions compiler/rustc_monomorphize/src/lib.rs
Expand Up @@ -3,6 +3,7 @@
#![feature(crate_visibility_modifier)]
#![feature(control_flow_enum)]
#![feature(in_band_lifetimes)]
#![recursion_limit = "256"]

#[macro_use]
extern crate tracing;
Expand Down

0 comments on commit 924dbc3

Please sign in to comment.