Recursion limit

This commit is contained in:
David Tolnay 2016-09-12 01:26:47 -07:00
parent 55e5f19437
commit a69b82c7c5
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -1,11 +1,12 @@
#![recursion_limit = "1000"]
#![cfg_attr(feature = "clippy", plugin(clippy))]
#![cfg_attr(feature = "clippy", feature(plugin))]
#![cfg_attr(feature = "clippy", allow(too_many_arguments))]
#![cfg_attr(feature = "clippy", allow(used_underscore_binding))]
#![cfg_attr(feature = "with-libsyntax", feature(rustc_private, plugin))]
// The `quote!` macro requires deep recursion.
#![recursion_limit = "192"]
extern crate serde_codegen_internals as internals;
#[cfg(feature = "with-syntex")]