gecko-dev/third_party/rust/term
Jeff Muizelaar 222792bb1d Bug 1335799 - Update vendored rust libraries for webrender update. r=kats
MozReview-Commit-ID: 8e4euhlfkwR

--HG--
rename : third_party/rust/core-foundation/.cargo-checksum.json => third_party/rust/core-foundation-0.2.3/.cargo-checksum.json
rename : third_party/rust/byteorder-0.5.3/.cargo-ok => third_party/rust/core-foundation-0.2.3/.cargo-ok
rename : third_party/rust/core-foundation/Cargo.toml => third_party/rust/core-foundation-0.2.3/Cargo.toml
rename : third_party/rust/core-foundation-sys/.cargo-checksum.json => third_party/rust/core-foundation-sys-0.2.3/.cargo-checksum.json
rename : third_party/rust/byteorder-0.5.3/.cargo-ok => third_party/rust/core-foundation-sys-0.2.3/.cargo-ok
rename : third_party/rust/core-foundation-sys/Cargo.toml => third_party/rust/core-foundation-sys-0.2.3/Cargo.toml
rename : third_party/rust/core-foundation-sys/src/base.rs => third_party/rust/core-foundation-sys-0.2.3/src/base.rs
rename : third_party/rust/core-foundation-sys/src/url.rs => third_party/rust/core-foundation-sys-0.2.3/src/url.rs
rename : third_party/rust/byteorder-0.5.3/.cargo-ok => third_party/rust/gamma-lut/.cargo-ok
rename : third_party/rust/byteorder-0.5.3/.cargo-ok => third_party/rust/thread_profiler/.cargo-ok
2017-02-14 13:34:15 -05:00
..
scripts
src
tests
.cargo-checksum.json
.cargo-ok
.gitignore
.travis.yml
Cargo.toml
LICENSE-APACHE
LICENSE-MIT
README.md
appveyor.yml
rustfmt.toml

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.