Skip to content

Commit 4ecf49f

Browse files
authored
Merge pull request #401 from async-rs/fix-recursion-limit
fix doc recursion limit
2 parents ca4856a + 4346386 commit 4ecf49f

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)