tree: 3ed30cd1a9604efa2ca2daa619da08474b474dc5 [path history] [tgz]
  1. scripts/
  2. src/
  3. tests/
  4. .cargo-checksum.json
  5. .travis.yml
  6. appveyor.yml
  7. BUILD.bazel
  8. Cargo.toml
  9. Cargo.toml.orig
  10. LICENSE-APACHE
  11. LICENSE-MIT
  12. README.md
  13. rustfmt.toml
third_party/rust_crates/vendor/term-0.5.1/README.md

term

A Rust library for terminfo parsing and terminal colors.

Build Status Build status

Documentation

Usage

Add this to your Cargo.toml:

[dependencies]

term = "*"

and this to your crate root:

extern crate 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.