Crates.io | r3bl_ansi_color |
lib.rs | r3bl_ansi_color |
version | |
source | src |
created_at | 2023-08-20 21:37:49.259008 |
updated_at | 2024-10-20 00:09:11.203087 |
description | Rust crate to generate formatted ANSI 256 (8-bit) and truecolor (24-bit) color output to stdout |
homepage | https://r3bl.com |
repository | https://github.com/r3bl-org/r3bl-open-core/tree/main/ansi_color |
max_upload_size | |
id | 949570 |
Cargo.toml error: | TOML parse error at line 21, column 1 | 21 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
R3BL TUI library & suite of apps focused on developer productivity
We are working on building command line apps in Rust which have rich text user interfaces (TUI). We want to lean into the terminal as a place of productivity, and build all kinds of awesome apps for it.
🔮 Instead of just building one app, we are building a library to enable any kind of rich TUI development w/ a twist: taking concepts that work really well for the frontend mobile and web development world and re-imagining them for TUI & Rust.
🌎 We are building apps to enhance developer productivity & workflows.
tmux
in Rust (separate processes mux'd onto a
single terminal window). Rather it is to build a set of integrated "apps" (or
"tasks") that run in the same process that renders to one terminal window.All the crates in the r3bl-open-core
repo provide lots of useful
functionality to help you build TUI (text user interface) apps, along w/ general
niceties & ergonomics that all Rustaceans 🦀 can enjoy 🎉.
Rust crate to generate formatted ANSI 256 (8-bit) and truecolor (24-bit) color output to stdout. On macOS, the default Terminal.app does not support truecolor, so ANSI 256 colors are used instead.
This crate performs its own detection of terminal color capability heuristically. And does not use other crates to perform this function.
Here's a screenshot of running the main
example on various operating systems:
Running on Linux Tilix |
Running on Windows Terminal |
Running on macOS terminal app (note ANSI 256 runtime detection) |
Running on macOS iTerm app (note Truecolor runtime detection) |
Please check out the changelog to see how the library has evolved over time.
To learn how we built this crate, please take a look at the following resources.
The main struct that we have to consider is AnsiStyledText
. It has two fields:
text
- the text to print.style
- a list of styles to apply to the text.Here's an example.
use r3bl_ansi_color::{AnsiStyledText, Style, Color};
AnsiStyledText {
text: "Print a formatted (bold, italic, underline) string w/ ANSI color codes.",
style: &[
Style::Bold,
Style::Italic,
Style::Underline,
Style::Foreground(Color::Rgb(50, 50, 50)),
Style::Background(Color::Rgb(100, 200, 1)),
],
}
.println();
Please a look at the
main
example to get a
better idea of how to use this crate.
🌠In order for these to work you have to install the Rust toolchain and nu
and
cargo-watch
:
rustup
by following the instructions
here.cargo-watch
using cargo install cargo-watch
.flamegraph
using cargo install flamegraph
.nu
on your system using cargo install nu
. It
is available for Linux, macOS, and Windows. And it is written in Rust.Command | Description |
---|---|
nu run build |
Build the project |
nu run clean |
Clean the project |
nu run run |
Run examples |
nu run run-release |
Run examples with release flag |
nu run run-flamegraph |
Run examples with flamegraph profiling |
nu run test |
Run tests |
nu run clippy |
Run clippy |
nu run docs |
Build docs |
nu run serve-docs |
Serve docs. Useful if you SSH into a remote machine via VSCode and want to view the docs locally |
nu run upgrade-deps |
Upgrade dependencies |
nu run rustfmt |
Run rustfmt |
The following commands will watch for changes in the source folder and re-run:
Command | Description |
---|---|
nu run watch-run |
Watch run |
nu run watch-all-tests |
Watch all tests |
nu run watch-one-test <test_name> |
Watch one test |
nu run watch-clippy |
Watch clippy |
nu run watch-macro-expansion-one-test <test_name> |
Watch macro expansion for one test |
Here are some relevant links:
concolor
anstream
documentationcolorchoice
documentationcolorchoice-clap
documentationterm_supports_ansi_color
functionanstyle-query
cratesupports-color
documentationr3bl_ansi_color
crate (the source in ansi_color
folder is this crate)colored
crateLicense: Apache-2.0