blob: aa2cbb77e1ee7ed6e93d241da3e1bf442dacffd3 [file] [log] [blame]
Jakub Kotur94f54142020-12-21 17:28:14 +01001[package]
2name = "atty"
3version = "0.2.14"
4authors = ["softprops <d.tangren@gmail.com>"]
5description = "A simple interface for querying atty"
6documentation = "http://softprops.github.io/atty"
7homepage = "https://github.com/softprops/atty"
8repository = "https://github.com/softprops/atty"
9keywords = ["terminal", "tty", "isatty"]
10license = "MIT"
11readme = "README.md"
12exclude = ["/.travis.yml", "/appveyor.yml"]
13
14[badges]
15travis-ci = { repository = "softprops/atty" }
16
17[target.'cfg(unix)'.dependencies]
18libc = { version = "0.2", default-features = false }
19
20[target.'cfg(target_os = "hermit")'.dependencies]
21hermit-abi = "0.1.6"
22
23[target.'cfg(windows)'.dependencies.winapi]
24version = "0.3"
25features = ["consoleapi", "processenv", "minwinbase", "minwindef", "winbase"]
26