{"id":15323308,"url":"https://github.com/krishpranav/rustcli","last_synced_at":"2026-01-06T14:55:53.431Z","repository":{"id":109907990,"uuid":"441664887","full_name":"krishpranav/rustcli","owner":"krishpranav","description":"A simple rust framework to build cli applications","archived":false,"fork":false,"pushed_at":"2021-12-26T07:55:56.000Z","size":1284,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-04T13:46:30.123Z","etag":null,"topics":["cli","command-line","commandline","idea","iterm","jetbrains","language","rust","rust-lang","terminal"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/krishpranav.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-12-25T11:26:37.000Z","updated_at":"2021-12-27T12:20:48.000Z","dependencies_parsed_at":"2023-04-13T12:17:35.271Z","dependency_job_id":null,"html_url":"https://github.com/krishpranav/rustcli","commit_stats":{"total_commits":43,"total_committers":2,"mean_commits":21.5,"dds":0.06976744186046513,"last_synced_commit":"7be99d48e8e409d0df86f0e69bf9dd285c6d282d"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krishpranav%2Frustcli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krishpranav%2Frustcli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krishpranav%2Frustcli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krishpranav%2Frustcli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/krishpranav","download_url":"https://codeload.github.com/krishpranav/rustcli/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245898331,"owners_count":20690466,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","command-line","commandline","idea","iterm","jetbrains","language","rust","rust-lang","terminal"],"created_at":"2024-10-01T09:19:31.379Z","updated_at":"2026-01-06T14:55:53.388Z","avatar_url":"https://github.com/krishpranav.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# rustcli\nA simple rust framework to build cli applications\n\n[![CI](https://github.com/krishpranav/rustcli/actions/workflows/rust.yml/badge.svg?branch=master)](https://github.com/krishpranav/rustcli/actions/workflows/rust.yml)\n\n[![forthebadge](https://forthebadge.com/images/badges/made-with-rust.svg)](https://forthebadge.com)\n\n## About:\n- a rust framework to help developers create cli app easily :)\n\n## Installation:\n```toml\n[dependencies]\nrustcli = { git = \"https://github.com/krishpranav/rustcli\" }\n```\n\n## Quick Start:\n\n- basic cli app using rustcli\n\n```rust\nuse rustcli::{App};\nuse std::env;\n\nfn main() {\n    let args: Vec\u003cString\u003e = env::args().collect();\n    let app = App::new(env!(\"CARGO_PKG_NAME\"))\n        .description(\"hey this is a cli app build using rust cli\")\n        .author(\"Authorone\")\n        .version(env!(\"CARGO_PKG_VERSION\"))\n        .usage(\"cli [args]\")\n        .action(|c| println!(\"Hello, {:?}\", c.args));\n\n    app.run(args);\n}\n```\n\n- for more tutorial visit the [docs](https://github.com/krishpranav/rustcli/blob/master/README.md)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkrishpranav%2Frustcli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkrishpranav%2Frustcli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkrishpranav%2Frustcli/lists"}