gitextract_xj1rciio/ ├── .cargo/ │ └── config.toml ├── .dockerignore ├── .editorconfig ├── .github/ │ ├── FUNDING.yml │ ├── actions/ │ │ ├── docker-push-by-digest/ │ │ │ └── action.yml │ │ └── docker-release/ │ │ └── action.yml │ ├── semantic.yml │ └── workflows/ │ ├── ci.yml │ ├── docker.yml │ └── release.yml ├── .gitignore ├── .pre-commit-hooks.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.toml ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── cli/ │ ├── Cargo.toml │ ├── build.rs │ └── src/ │ ├── main.rs │ ├── subcommand.rs │ └── version.rs ├── fmt/ │ ├── Cargo.toml │ ├── src/ │ │ ├── config/ │ │ │ └── mod.rs │ │ ├── document/ │ │ │ ├── defaults.toml │ │ │ ├── factory.rs │ │ │ ├── mod.rs │ │ │ └── model.rs │ │ ├── error.rs │ │ ├── git.rs │ │ ├── header/ │ │ │ ├── defaults.toml │ │ │ ├── matcher.rs │ │ │ ├── mod.rs │ │ │ ├── model.rs │ │ │ └── parser.rs │ │ ├── lib.rs │ │ ├── license/ │ │ │ ├── Apache-2.0-ASF.txt │ │ │ ├── Apache-2.0.txt │ │ │ ├── Elastic-2.0.txt │ │ │ └── mod.rs │ │ ├── processor.rs │ │ └── selection.rs │ └── tests/ │ ├── content/ │ │ ├── empty.py │ │ └── two_headers.rs │ └── tests.rs ├── licenserc.toml ├── pyproject.toml ├── rust-toolchain.toml ├── rustfmt.toml └── tests/ ├── .gitignore ├── attrs_and_props/ │ ├── license.txt │ ├── licenserc.toml │ ├── main.rs │ └── main.rs.expected ├── bom_issue/ │ ├── headless_bom.cs │ ├── headless_bom.cs.expected │ ├── license.txt │ ├── licenserc.toml │ └── style.toml ├── disk_file_created_year/ │ ├── license.txt │ ├── licenserc.toml │ ├── main.rs │ └── main.rs.expected ├── it.py ├── load_header_path/ │ ├── license.txt │ ├── licenserc.toml │ ├── main.rs │ └── main.rs.expected ├── regression_blank_line/ │ ├── licenserc.toml │ ├── main.rs │ └── main.rs.expected └── regression_no_blank_lines/ ├── licenserc.toml ├── repro.py └── repro.py.expected