Skip to content

Commit 21f545d

Browse files
committed
fix(parser): Don't stackoverflow on opt-level=0
Fixes #702
1 parent af1f97d commit 21f545d

File tree

1 file changed

+1
-1
lines changed
  • crates/toml_edit/src/parser

1 file changed

+1
-1
lines changed

crates/toml_edit/src/parser/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ pub(crate) mod prelude {
9999
}
100100

101101
#[cfg(not(feature = "unbounded"))]
102-
const LIMIT: usize = 128;
102+
const LIMIT: usize = 100;
103103

104104
#[cfg(not(feature = "unbounded"))]
105105
impl RecursionCheck {

0 commit comments

Comments
 (0)