We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Basically the same error as seen as toml-rs/toml-rs#428
Reproduction code:
fn main() { let brackets = "[".repeat(20000); let input_string = format!("x={}", &brackets); input_string.parse::<toml_edit::Document>().unwrap(); }