gitextract_2zpjzd4w/ ├── .cargo/ │ └── config.toml ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yaml │ │ ├── config.yml │ │ ├── feature_request.md │ │ └── question.md │ ├── dependabot.yml │ └── workflows/ │ └── CICD.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.toml ├── Cross.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── Makefile ├── README.md ├── SECURITY.md ├── contrib/ │ └── completion/ │ └── _fd ├── doc/ │ ├── .gitattributes │ ├── fd.1 │ ├── release-checklist.md │ ├── screencast.sh │ └── sponsors.md ├── rustfmt.toml ├── scripts/ │ ├── create-deb.sh │ └── version-bump.sh ├── src/ │ ├── cli.rs │ ├── config.rs │ ├── dir_entry.rs │ ├── error.rs │ ├── exec/ │ │ ├── command.rs │ │ ├── job.rs │ │ └── mod.rs │ ├── exit_codes.rs │ ├── filesystem.rs │ ├── filetypes.rs │ ├── filter/ │ │ ├── mod.rs │ │ ├── owner.rs │ │ ├── size.rs │ │ └── time.rs │ ├── fmt/ │ │ ├── input.rs │ │ └── mod.rs │ ├── hyperlink.rs │ ├── main.rs │ ├── output.rs │ ├── regex_helper.rs │ └── walk.rs └── tests/ ├── testenv/ │ └── mod.rs └── tests.rs