gitextract_rf49ku9m/ ├── .github/ │ ├── CODEOWNERS │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── ci.yml │ ├── cifuzz.yml │ └── codspeed.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE ├── README.md ├── assets/ │ ├── links.txt │ └── testfile.txt ├── benchmarks/ │ ├── Cargo.toml │ ├── README.md │ ├── benches/ │ │ ├── arithmetic.rs │ │ ├── http.rs │ │ ├── http_streaming.rs │ │ ├── ini.rs │ │ ├── ini_str.rs │ │ ├── json.rs │ │ ├── json_streaming.rs │ │ └── number.rs │ ├── canada.json │ └── src/ │ └── lib.rs ├── doc/ │ ├── archive/ │ │ ├── FAQ.md │ │ ├── how_nom_macros_work.md │ │ ├── upgrading_to_nom_1.md │ │ ├── upgrading_to_nom_2.md │ │ └── upgrading_to_nom_4.md │ ├── choosing_a_combinator.md │ ├── custom_input_types.md │ ├── error_management.md │ ├── home.md │ ├── making_a_new_parser_from_scratch.md │ ├── nom_recipes.md │ └── upgrading_to_nom_5.md ├── examples/ │ ├── custom_error.rs │ ├── iterator.rs │ ├── json.rs │ ├── json2.rs │ ├── json_iterator.rs │ ├── s_expression.rs │ └── string.rs ├── fuzz/ │ ├── .gitignore │ ├── Cargo.toml │ └── fuzz_targets/ │ └── fuzz_arithmetic.rs ├── nom-language/ │ ├── Cargo.toml │ └── src/ │ ├── error.rs │ ├── lib.rs │ └── precedence/ │ ├── mod.rs │ └── tests.rs ├── proptest-regressions/ │ ├── character/ │ │ ├── complete.txt │ │ └── streaming.txt │ └── number/ │ ├── complete.txt │ └── streaming.txt ├── rustfmt.toml ├── src/ │ ├── bits/ │ │ ├── complete.rs │ │ ├── mod.rs │ │ └── streaming.rs │ ├── branch/ │ │ ├── mod.rs │ │ └── tests.rs │ ├── bytes/ │ │ ├── complete.rs │ │ ├── mod.rs │ │ ├── streaming.rs │ │ └── tests.rs │ ├── character/ │ │ ├── complete.rs │ │ ├── mod.rs │ │ ├── streaming.rs │ │ └── tests.rs │ ├── combinator/ │ │ ├── mod.rs │ │ └── tests.rs │ ├── error.rs │ ├── internal.rs │ ├── lib.rs │ ├── macros.rs │ ├── multi/ │ │ ├── mod.rs │ │ └── tests.rs │ ├── number/ │ │ ├── complete.rs │ │ ├── mod.rs │ │ └── streaming.rs │ ├── sequence/ │ │ ├── mod.rs │ │ └── tests.rs │ ├── str.rs │ └── traits.rs └── tests/ ├── arithmetic.rs ├── arithmetic_ast.rs ├── css.rs ├── custom_errors.rs ├── escaped.rs ├── expression_ast.rs ├── float.rs ├── fnmut.rs ├── ini.rs ├── ini_str.rs ├── issues.rs ├── json.rs ├── mp4.rs ├── multiline.rs ├── overflow.rs └── reborrow_fold.rs