All Projects → rust-cli → Meta

rust-cli / Meta

Licence: mit
CLI working group

Programming Languages

rust
11053 projects

CLI working group

This repo is for coordinating the work of the Rust CLI Working Group, also known as "Rust CLIQuE" (Rust CLI Quality Enhancement).

It also contains the CLAiR, the Command Line Applications in Rust book.

Our goal

Let's make this a true statement:

Rust makes writing crossplatform, tested, modern command line applications frictionless while incorporating industry best practices and providing great documentation.

What's a CLI?

For our intents and purposes, a CLI is any program that

  • Launches in a terminal
  • Accepts configuration from various sources, such as command line arguments, environment variables, or configuration files
  • Runs to completion with minimal/no user interaction
  • Accepts input from stdin, files, or network
  • Performs processing on some input (files, network, stdin) based on the configuration specified
  • Communicates via standard outputs (files, network, std{out,err})

(We specifically don't want to focus on "TUI" apps right now.)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].