Skip to content

Commit 1720eb0

Browse files
committed
Increase recursion limit
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
1 parent 810fc82 commit 1720eb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

typed-html/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![recursion_limit = "128"]
1+
#![recursion_limit = "256"]
22
//! This crate provides the `html!` macro for building HTML documents inside your
33
//! Rust code using roughly [JSX] compatible syntax.
44
//!

0 commit comments

Comments
 (0)