diff --git a/Cargo.toml b/Cargo.toml index bc55560..4f9e4a1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "derivative" -version = "1.0.2" +version = "1.0.3" authors = ["mcarton "] license = "MIT/Apache-2.0" readme = "README.md" diff --git a/src/lib.rs b/src/lib.rs index defef16..aa4e067 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -9,6 +9,9 @@ redundant_field_names, ))] +// https://github.com/rust-lang/rust/issues/62132 +#![recursion_limit="128"] + extern crate proc_macro; extern crate proc_macro2; #[macro_use]