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