-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fails to compile with current nightly #112
Comments
I'm reported this as a Rust error at rust-lang/rust#71359. The current workaround (and possibly acceptable solution to be applied here) is to increase the recursion limit of typed-html to 130 (or 256 right away). |
chrysn
added a commit
to chrysn-pull-requests/typed-html
that referenced
this issue
Apr 22, 2020
Changes[1] to the Rust standard library are affecting[2] the nesting size of types to the point where typed-html can not be built on nightly. This resolves the issue by increasing the acceptable recursion depth for the crate. [1]: rust-lang/rust#70896 [1]: rust-lang/rust#71359 Closes: bodil#112
chrysn
added a commit
to chrysn-pull-requests/typed-html
that referenced
this issue
Apr 22, 2020
Changes[1] to the Rust standard library are affecting[2] the nesting size of types to the point where typed-html can not be built on nightly. This resolves the issue by increasing the acceptable recursion depth for the crate. [1]: rust-lang/rust#70896 [2]: rust-lang/rust#71359 Closes: bodil#112
The vec reimplementation of the offending Event interator (in #117) appears to achieve the same; applying either makes things buildable in nightly. |
I went with #117, which should scale better. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
rustc --version rustc 1.44.0-nightly (94d346360 2020-04-09)
Likely a bug in the nightly compiler, but maybe already known here? All working fine on
1.42
.The text was updated successfully, but these errors were encountered: