gitextract_fq4q0vwy/ ├── .config/ │ └── nextest.toml ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ ├── feature_request.yml │ │ └── registry_request.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ ├── release.yml │ └── rust.yml ├── .gitignore ├── .vscode/ │ └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE ├── README.md ├── USAGE.md ├── clippy.toml ├── crates/ │ ├── cli/ │ │ ├── Cargo.toml │ │ └── src/ │ │ └── main.rs │ ├── commands/ │ │ ├── Cargo.toml │ │ ├── src/ │ │ │ ├── commands/ │ │ │ │ ├── clean.rs │ │ │ │ ├── init.rs │ │ │ │ ├── install.rs │ │ │ │ ├── login.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── push.rs │ │ │ │ ├── uninstall.rs │ │ │ │ └── update.rs │ │ │ ├── lib.rs │ │ │ └── utils.rs │ │ └── tests/ │ │ ├── tests-clean.rs │ │ ├── tests-init.rs │ │ ├── tests-install.rs │ │ ├── tests-login.rs │ │ ├── tests-push.rs │ │ ├── tests-uninstall.rs │ │ └── tests-update.rs │ └── core/ │ ├── Cargo.toml │ └── src/ │ ├── auth.rs │ ├── config.rs │ ├── download.rs │ ├── errors.rs │ ├── install.rs │ ├── lib.rs │ ├── lock/ │ │ └── forge.rs │ ├── lock.rs │ ├── push.rs │ ├── registry.rs │ ├── remappings.rs │ ├── update.rs │ └── utils.rs ├── flake.nix ├── release-plz.toml └── rustfmt.toml