1[package]
2name = "termion"
3version = "1.5.2"
4authors = ["ticki <Ticki@users.noreply.github.com>", "gycos <alexandre.bury@gmail.com>", "IGI-111 <igi-111@protonmail.com>"]
5description = "A bindless library for manipulating terminals."
6repository = "https://gitlab.redox-os.org/redox-os/termion"
7documentation = "https://docs.rs/termion"
8license = "MIT"
9keywords = ["tty", "color", "terminal", "password", "tui"]
10exclude = ["target", "CHANGELOG.md", "image.png", "Cargo.lock"]
11
12[dependencies]
13numtoa = { version = "0.1.0", features = ["std"]}
14
15[target.'cfg(not(target_os = "redox"))'.dependencies]
16libc = "0.2.8"
17
18[target.'cfg(target_os = "redox")'.dependencies]
19redox_syscall = "0.1"
20redox_termios = "0.1"
21