1[package]
2name = "termcolor"
3version = "1.1.2"  #:version
4authors = ["Andrew Gallant <jamslam@gmail.com>"]
5description = """
6A simple cross platform library for writing colored text to a terminal.
7"""
8documentation = "https://docs.rs/termcolor"
9homepage = "https://github.com/BurntSushi/termcolor"
10repository = "https://github.com/BurntSushi/termcolor"
11readme = "README.md"
12keywords = ["windows", "win", "color", "ansi", "console"]
13license = "Unlicense OR MIT"
14exclude = ["/.travis.yml", "/appveyor.yml", "/ci/**"]
15edition = "2018"
16
17[lib]
18name = "termcolor"
19bench = false
20
21[target.'cfg(windows)'.dependencies]
22winapi-util = "0.1.3"
23
24[dev-dependencies]
25# TODO: Re-enable this once the MSRV is 1.43 or greater.
26# See: https://github.com/BurntSushi/termcolor/issues/35
27# doc-comment = "0.3"
28