25 releases

0.9.0 May 8, 2024
0.8.0 Mar 24, 2023
0.7.5 Jan 15, 2023
0.7.3 May 21, 2020
0.1.2 Dec 26, 2016

#40 in Command-line interface

Download history 28957/week @ 2024-11-22 29173/week @ 2024-11-29 31218/week @ 2024-12-06 30324/week @ 2024-12-13 34435/week @ 2024-12-20 16822/week @ 2024-12-27 25207/week @ 2025-01-03 31711/week @ 2025-01-10 32722/week @ 2025-01-17 33582/week @ 2025-01-24 37483/week @ 2025-01-31 41041/week @ 2025-02-07 34579/week @ 2025-02-14 41914/week @ 2025-02-21 41019/week @ 2025-02-28 49280/week @ 2025-03-07

173,378 downloads per month
Used in 199 crates (13 directly)

WTFPL license

120KB
3K SLoC

terminfo

Crates.io Crates.io WTFPL Build Status

Terminal capabilities with type-safe getters.

Documentation

Example

use std::io;
use terminfo::{capability as cap, Database};

fn main() {
	let info = Database::from_env().unwrap();

	if let Some(cap::MaxColors(n)) = info.get::<cap::MaxColors>() {
		println!("The terminal supports {} colors.", n);
	} else {
		println!("The terminal does not support colors, what year is this?");
	}

	if let Some(flash) = info.get::<cap::FlashScreen>() {
		flash.expand().to(io::stdout()).unwrap();
	} else {
		println!("FLASH GORDON!");
	}

	info.get::<cap::SetAForeground>().unwrap().expand().color(2).to(io::stdout()).unwrap();
	info.get::<cap::SetABackground>().unwrap().expand().color(4).to(io::stdout()).unwrap();
	println!("SUP");
	info.get::<cap::ExitAttributeMode>().unwrap().expand().to(io::stdout()).unwrap();
}

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.

Dependencies

~1MB
~22K SLoC