{"id":15032521,"url":"https://github.com/mathisburger/rusty-cli","last_synced_at":"2026-02-16T00:32:10.407Z","repository":{"id":45758263,"uuid":"514407666","full_name":"MathisBurger/rusty-cli","owner":"MathisBurger","description":"A rust library build for developing fast and scalable CLIs","archived":false,"fork":false,"pushed_at":"2022-07-15T21:48:45.000Z","size":38,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-28T05:00:00.521Z","etag":null,"topics":["cli","rust","rust-crate","rust-lang","rust-library","rustlang","terminal"],"latest_commit_sha":null,"homepage":"https://crates.io/crates/rusty-cli","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MathisBurger.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}},"created_at":"2022-07-15T21:19:14.000Z","updated_at":"2022-07-15T21:53:01.000Z","dependencies_parsed_at":"2022-09-04T19:11:27.439Z","dependency_job_id":null,"html_url":"https://github.com/MathisBurger/rusty-cli","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MathisBurger%2Frusty-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MathisBurger%2Frusty-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MathisBurger%2Frusty-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MathisBurger%2Frusty-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MathisBurger","download_url":"https://codeload.github.com/MathisBurger/rusty-cli/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243351841,"owners_count":20276908,"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","rust","rust-crate","rust-lang","rust-library","rustlang","terminal"],"created_at":"2024-09-24T20:18:38.469Z","updated_at":"2025-10-08T16:39:54.532Z","avatar_url":"https://github.com/MathisBurger.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n    \u003ch1\u003erusty-cli\u003c/h1\u003e\n\u003chr\u003e\n\u003cstrong\u003eBuild fast and scalable command line applications with rust!\u003c/strong\u003e\n    \u003cbr\u003e\n\u003cimg src=\"https://img.shields.io/github/license/mathisburger/rusty-cli?style=for-the-badge\" /\u003e\n\u003cimg src=\"https://img.shields.io/github/last-commit/mathisburger/terminalToDo?style=for-the-badge\" /\u003e\n\u003c/div\u003e\n\u003chr\u003e\n\u003cdiv align=\"center\"\u003e\n    \u003cimg src=\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/Rust_programming_language_black_logo.svg/2048px-Rust_programming_language_black_logo.svg.png\" height=\"150\" /\u003e\n\u003c/div\u003e\n\n# Project information\n\nRusty-cli is a rust library written for making the process of developing command line interfaces. It provides a ton of \nuseful abstractions for existing libraries. For example does the rusty-cli ecosystem provide wrapped implementations for\nthe \u003ca href=\"https://docs.rs/dialoguer/0.10.1/dialoguer/\"\u003edialoguer\u003c/a\u003e library. But rusty-cli also has some great features\nlike the FileReader or the integrated command handler.\n\n# Usage \n\nJust paste the dependency into your `Cargo.toml`\n```toml\nrusty-cli = \"0.1.0\"\n```\n\n# Getting started\n\nDo you want to create your first project with rusty-cli?\u003cbr\u003e\nTry this example for testing your installation.\n```rust\nlet pong_command = Command::new(\n        \"Pong\".to_string(),\n        \"Pong command\".to_string(),\n        \"usage\".to_string(),\n        executor,\n        \"ping\".to_string()\n    );\n\n    let mut runner = Runner::new();\n    runner.enable_command_handler(CommandHandlerArguments {\n        commands: vec![pong_command],\n        default_no_argument_callback: None,\n        flags: vec![]\n    });\n     runner.run();\n```\n\n# Documentation \n1. \u003ca href=\"docs/Introduction/README.md\"\u003eIntroduction\u003c/a\u003e\n2. \u003ca href=\"docs/CommandHandler/README.md\"\u003eCommand handler\u003c/a\u003e\n3. \u003ca href=\"docs/FileReader/README.md\"\u003eFileReader\u003c/a\u003e\n4. \u003ca href=\"docs/Inputs/README.md\"\u003eInputs\u003c/a\u003e\n\n# Contribute \n\nThis repository is maintained actively. If you have got a new feature request or you found a bug, feel free\nto open a new issue or just create your own implementation to fix your problem and create a pull request to this\nrepository. I am always open for new contributions from every origin. Feel free to help this project to gain more\nusers and features.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmathisburger%2Frusty-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmathisburger%2Frusty-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmathisburger%2Frusty-cli/lists"}