about summary refs log tree commit diff
path: root/compiler/rustc_monomorphize
diff options
context:
space:
mode:
authorCamille GILLOT <gillot.camille@gmail.com>2021-09-01 21:05:35 +0200
committerCamille GILLOT <gillot.camille@gmail.com>2021-09-08 20:40:30 +0200
commit924dbc36c9888eebacdcd06ec444418683b0d5fd (patch)
tree5b1ad21c70f30f0f809d3f1a44421596f12e3644 /compiler/rustc_monomorphize
parent058fddcb77c1bbfe76f0bce9c35b78a800d08584 (diff)
downloadrust-924dbc36c9888eebacdcd06ec444418683b0d5fd.tar.gz
rust-924dbc36c9888eebacdcd06ec444418683b0d5fd.zip
Rebase fallout.
Diffstat (limited to 'compiler/rustc_monomorphize')
-rw-r--r--compiler/rustc_monomorphize/Cargo.toml1
-rw-r--r--compiler/rustc_monomorphize/src/lib.rs1
2 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_monomorphize/Cargo.toml b/compiler/rustc_monomorphize/Cargo.toml
index 93a964bf3cc..350ae088777 100644
--- a/compiler/rustc_monomorphize/Cargo.toml
+++ b/compiler/rustc_monomorphize/Cargo.toml
@@ -1,5 +1,4 @@
 [package]
-authors = ["The Rust Project Developers"]
 name = "rustc_monomorphize"
 version = "0.0.0"
 edition = "2018"
diff --git a/compiler/rustc_monomorphize/src/lib.rs b/compiler/rustc_monomorphize/src/lib.rs
index 2a40eeac5bd..08b1d7b7fab 100644
--- a/compiler/rustc_monomorphize/src/lib.rs
+++ b/compiler/rustc_monomorphize/src/lib.rs
@@ -3,6 +3,7 @@
 #![feature(crate_visibility_modifier)]
 #![feature(control_flow_enum)]
 #![feature(in_band_lifetimes)]
+#![recursion_limit = "256"]
 
 #[macro_use]
 extern crate tracing;