gitextract_74i3scx4/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── feature_request.yml │ │ └── new_language.yml │ ├── dependabot.yml │ ├── release.yml │ └── workflows/ │ ├── cd.yml │ ├── ci.yml │ ├── msrv-badge.yml │ ├── web-ci.yml │ ├── wiki.yml │ └── windows-installer.iss ├── .gitignore ├── .mailmap ├── .rustfmt.toml ├── .tokeignore ├── .vscode/ │ └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE.md ├── Makefile ├── README.md ├── ascii/ │ ├── Cargo.toml │ ├── README.md │ └── src/ │ └── lib.rs ├── benches/ │ └── repo.rs ├── build.rs ├── docs/ │ ├── onefetch.1 │ ├── web/ │ │ ├── .gitignore │ │ ├── .npmrc │ │ ├── .prettierignore │ │ ├── .prettierrc │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── package.json │ │ ├── src/ │ │ │ ├── app.css │ │ │ ├── app.d.ts │ │ │ ├── app.html │ │ │ ├── lib/ │ │ │ │ └── utils.ts │ │ │ └── routes/ │ │ │ ├── +page.svelte │ │ │ ├── +page.ts │ │ │ └── AsciiPreview.svelte │ │ ├── static/ │ │ │ └── robots.txt │ │ ├── svelte.config.js │ │ ├── tsconfig.json │ │ ├── vercel.json │ │ └── vite.config.ts │ └── wiki/ │ ├── _Footer.md │ ├── _Sidebar.md │ ├── ascii-art.md │ ├── command-line-options.md │ ├── getting-started.md │ ├── home.md │ ├── images-in-the-terminal.md │ └── installation.md ├── image/ │ ├── Cargo.toml │ ├── README.md │ └── src/ │ ├── iterm.rs │ ├── kitty.rs │ ├── lib.rs │ └── sixel.rs ├── languages.yaml ├── manifest/ │ ├── Cargo.toml │ ├── README.md │ ├── src/ │ │ └── lib.rs │ └── tests/ │ ├── cargo.rs │ ├── fixtures/ │ │ ├── cargo/ │ │ │ └── Cargo.toml │ │ └── npm/ │ │ └── package.json │ └── npm.rs ├── resources/ │ └── license.cache.zstd ├── scripts/ │ └── nf-preview.rb ├── snap/ │ └── snapcraft.yaml ├── src/ │ ├── cli.rs │ ├── info/ │ │ ├── authors.rs │ │ ├── churn.rs │ │ ├── commits.rs │ │ ├── contributors.rs │ │ ├── created.rs │ │ ├── dependencies.rs │ │ ├── description.rs │ │ ├── git/ │ │ │ ├── metrics.rs │ │ │ ├── mod.rs │ │ │ └── sig.rs │ │ ├── head.rs │ │ ├── langs/ │ │ │ ├── language.rs │ │ │ ├── language.tera │ │ │ └── mod.rs │ │ ├── last_change.rs │ │ ├── license.rs │ │ ├── loc.rs │ │ ├── mod.rs │ │ ├── pending.rs │ │ ├── project.rs │ │ ├── size.rs │ │ ├── snapshots/ │ │ │ ├── onefetch__info__authors__test__author_info_alignment_with_three_authors.snap │ │ │ ├── onefetch__info__authors__test__author_info_with_one_author.snap │ │ │ └── onefetch__info__authors__test__author_info_with_two_authors.snap │ │ ├── title.rs │ │ ├── url.rs │ │ ├── utils/ │ │ │ ├── info_field.rs │ │ │ ├── mod.rs │ │ │ └── snapshots/ │ │ │ └── onefetch__info__utils__info_field__test__write_styled.snap │ │ └── version.rs │ ├── lib.rs │ ├── main.rs │ └── ui/ │ ├── mod.rs │ ├── printer/ │ │ ├── factory.rs │ │ └── mod.rs │ └── text_colors.rs └── tests/ ├── fixtures/ │ ├── make_bare_repo.sh │ ├── make_partial_repo.sh │ ├── make_pre_epoch_repo.sh │ ├── make_repo.sh │ ├── make_repo_without_code.sh │ └── make_repo_without_remote.sh ├── repo.rs └── snapshots/ └── repo__repo.snap