Today we ran into a weird issue while generating the rustdoc page for our project. As you can see here we run into a recursion limit issue. However increasing the recursion limit (#![recursion_limit = "4096"]) does not resolve it.
It worked on version 1.37.0-nightly-2019-06-21 but breaks on 1.37.0-nightly-2019-06-22
Any help would be appreciated.
Edit:
For reference as to how we got this error, here is our repo.
Today we ran into a weird issue while generating the rustdoc page for our project. As you can see here we run into a recursion limit issue. However increasing the recursion limit (
#![recursion_limit = "4096"]) does not resolve it.It worked on version
1.37.0-nightly-2019-06-21but breaks on1.37.0-nightly-2019-06-22Any help would be appreciated.
Edit:
For reference as to how we got this error, here is our repo.