gitextract_7hb7yep3/ ├── .editorconfig ├── .gitignore ├── .travis.yml ├── .vscode/ │ ├── launch.json │ └── tasks.json ├── Cargo.toml ├── LICENSE ├── README.md ├── assets/ │ └── data.json ├── benches/ │ ├── json.rs │ └── json_char.rs ├── doc/ │ └── article.md ├── examples/ │ ├── duration.rs │ ├── json.rs │ ├── json_char.rs │ ├── json_file.rs │ ├── simple.rs │ ├── test.json │ ├── utf8.rs │ ├── utf8_mixed.rs │ └── whitespace.rs ├── rustfmt.toml ├── src/ │ ├── char_class.rs │ ├── lib.rs │ ├── parser.rs │ ├── range.rs │ ├── result.rs │ ├── set.rs │ └── utf8.rs └── tests/ └── list.rs