├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── build.md │ ├── chore.md │ ├── ci.md │ ├── config.yml │ ├── documentation.md │ ├── feature_request.md │ ├── performance.md │ ├── refactor.md │ ├── revert.md │ ├── style.md │ └── test.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── fmt.yml │ ├── main.yml │ └── rust.yml ├── .gitignore ├── Cargo.toml ├── Dockerfile ├── README.md ├── assest ├── compare.gif ├── contribution.png ├── loc.gif ├── main.gif ├── top_lang.png └── top_repos.png ├── index.html ├── license ├── src ├── compare.rs ├── get_detailed_view.rs ├── github_graphql │ ├── detailed_view.rs │ └── query.graphql ├── github_logo_ascii.rs ├── graph │ ├── graph_maker.rs │ ├── query.graphql │ └── schema.graphql ├── input │ ├── menu_cli.rs │ └── mod.rs ├── lines_of_codes.rs └── main.rs └── target └── .rustc_info.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/.github/ISSUE_TEMPLATE/build.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/chore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/.github/ISSUE_TEMPLATE/chore.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/.github/ISSUE_TEMPLATE/ci.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/.github/ISSUE_TEMPLATE/performance.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/refactor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/.github/ISSUE_TEMPLATE/refactor.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/revert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/.github/ISSUE_TEMPLATE/revert.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/.github/ISSUE_TEMPLATE/style.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/.github/ISSUE_TEMPLATE/test.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/fmt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/.github/workflows/fmt.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/README.md -------------------------------------------------------------------------------- /assest/compare.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/assest/compare.gif -------------------------------------------------------------------------------- /assest/contribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/assest/contribution.png -------------------------------------------------------------------------------- /assest/loc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/assest/loc.gif -------------------------------------------------------------------------------- /assest/main.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/assest/main.gif -------------------------------------------------------------------------------- /assest/top_lang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/assest/top_lang.png -------------------------------------------------------------------------------- /assest/top_repos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/assest/top_repos.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/index.html -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/license -------------------------------------------------------------------------------- /src/compare.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/src/compare.rs -------------------------------------------------------------------------------- /src/get_detailed_view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/src/get_detailed_view.rs -------------------------------------------------------------------------------- /src/github_graphql/detailed_view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/src/github_graphql/detailed_view.rs -------------------------------------------------------------------------------- /src/github_graphql/query.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/src/github_graphql/query.graphql -------------------------------------------------------------------------------- /src/github_logo_ascii.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/src/github_logo_ascii.rs -------------------------------------------------------------------------------- /src/graph/graph_maker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/src/graph/graph_maker.rs -------------------------------------------------------------------------------- /src/graph/query.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/src/graph/query.graphql -------------------------------------------------------------------------------- /src/graph/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/src/graph/schema.graphql -------------------------------------------------------------------------------- /src/input/menu_cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/src/input/menu_cli.rs -------------------------------------------------------------------------------- /src/input/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/src/input/mod.rs -------------------------------------------------------------------------------- /src/lines_of_codes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/src/lines_of_codes.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/src/main.rs -------------------------------------------------------------------------------- /target/.rustc_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArshErgon/gitgrab/HEAD/target/.rustc_info.json --------------------------------------------------------------------------------