42 releases (1 stable)

new 1.0.0 Jul 21, 2024
0.7.0 Jan 12, 2021
0.6.1 Aug 5, 2019
0.6.0 Jul 26, 2019
0.1.1 Dec 29, 2014

#316 in Command-line interface

Download history 254837/week @ 2024-04-03 250998/week @ 2024-04-10 270460/week @ 2024-04-17 260349/week @ 2024-04-24 245240/week @ 2024-05-01 252479/week @ 2024-05-08 283120/week @ 2024-05-15 278910/week @ 2024-05-22 283768/week @ 2024-05-29 286188/week @ 2024-06-05 286745/week @ 2024-06-12 279093/week @ 2024-06-19 269994/week @ 2024-06-26 251819/week @ 2024-07-03 280322/week @ 2024-07-10 245275/week @ 2024-07-17

1,104,382 downloads per month
Used in fewer than 183 crates

MIT/Apache

110KB
2K SLoC

term

A Rust library for terminfo parsing and terminal colors.

CI

Documentation

MSRV

1.63

Usage

Add this to your Cargo.toml:

[dependencies]

term = "*"

Packaging and Distributing

For all terminals but windows consoles, this library depends on a non-hashed (for now) terminfo database being present. For example, on Debian derivitives, you should depend on ncurses-term; on Arch Linux, you depend on ncurses; and on MinGW, you should depend on mingw32-terminfo.

Unfortunately, if you're using a non-windows console on Windows (e.g. MinGW, Cygwin, Git Bash), you'll need to set the TERMINFO environment variable to point to the directory containing the terminfo database.


lib.rs:

Terminal formatting library.

This crate provides the Terminal trait, which abstracts over an ANSI Terminal to provide color printing, among other things. There are two implementations, the TerminfoTerminal, which uses control characters from a terminfo database, and WinConsole, which uses the Win32 Console API.

Usage

This crate is on crates.io and can be used by adding term to the dependencies in your project's Cargo.toml.

[dependencies]

term = "*"

Examples

use std::io::prelude::*;

let mut t = term::stdout().unwrap();

t.fg(term::color::GREEN).unwrap();
write!(t, "hello, ").unwrap();

t.fg(term::color::RED).unwrap();
writeln!(t, "world!").unwrap();

t.reset().unwrap();

Dependencies

~0–8.5MB
~65K SLoC