Skip to content

Commit 4346386

Browse files
committed
fix doc recursion limit
Signed-off-by: Yoshua Wuyts <[email protected]>
1 parent ca4856a commit 4346386

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
#![doc(test(attr(deny(rust_2018_idioms, warnings))))]
4848
#![doc(test(attr(allow(unused_extern_crates, unused_variables))))]
4949
#![doc(html_logo_url = "https://async.rs/images/logo--hero.svg")]
50-
#![recursion_limit = "1024"]
50+
#![recursion_limit = "2048"]
5151

5252
#[macro_use]
5353
mod utils;

0 commit comments

Comments
 (0)