gitextract_b41iglrb/ ├── .editorconfig ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── python-build.yml │ ├── release.yml │ └── rust-build.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── README_PYPI.md ├── RELEASE_NOTES.md ├── benches/ │ ├── benchmark.rs │ └── testcases.txt ├── demo.tape ├── grex.pyi ├── pyproject.toml ├── requirements.txt ├── src/ │ ├── builder.rs │ ├── char_range.rs │ ├── cluster.rs │ ├── component.rs │ ├── config.rs │ ├── dfa.rs │ ├── expression.rs │ ├── format.rs │ ├── grapheme.rs │ ├── lib.rs │ ├── macros.rs │ ├── main.rs │ ├── python.rs │ ├── quantifier.rs │ ├── regexp.rs │ ├── substring.rs │ ├── unicode_tables/ │ │ ├── decimal.rs │ │ ├── mod.rs │ │ ├── space.rs │ │ └── word.rs │ └── wasm.rs └── tests/ ├── cli_integration_tests.rs ├── lib_integration_tests.rs ├── property_tests.rs ├── python/ │ └── test_grex.py ├── wasm_browser_tests.rs └── wasm_node_tests.rs