Skip to content

Commit

Permalink
Increase recursion limit
Browse files Browse the repository at this point in the history
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
  • Loading branch information
chrysn committed Apr 22, 2020
1 parent 810fc82 commit 1720eb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typed-html/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![recursion_limit = "128"]
#![recursion_limit = "256"]
//! This crate provides the `html!` macro for building HTML documents inside your
//! Rust code using roughly [JSX] compatible syntax.
//!
Expand Down

0 comments on commit 1720eb0

Please sign in to comment.