Thanks to visit codestin.com
Credit goes to lib.rs

#terminal #console #cli

console_stuff

convenient re-exporting of console crates

3 unstable releases

Uses new Rust 2024

0.2.1 Jun 18, 2025
0.2.0 Jun 17, 2025
0.1.0 Jun 17, 2025

#771 in Command-line interface

Codestin Search App Codestin Search App Codestin Search App

61 downloads per month

MIT/Apache

7KB

Usage

Namespaced (recommended):

use console_stuff::{console, dialoguer, indicatif, clap};
console::style("hello").red();

Or import everything:

use console_stuff::prelude::*; // Bad idea, really bad idea, just use the namespaced way.
style("hello").red();

Rust Workflow

Console Stuff

Convenient re-exports of indicatif, console, dialoguer and clap

Installation

Just add this to your Cargo.toml file

[dependencies]
console_stuff = "0.2.1"

or

[dependencies]
console_stuff = { git = "https://github.com/stewthestew/console_stuff" }

For the latest stuff in a re-export crate

Dependencies

~4–15MB
~134K SLoC