2016-03-06 13:55:01 +00:00
|
|
|
[package]
|
2016-03-15 20:36:33 +00:00
|
|
|
name = "termion"
|
2022-10-21 22:08:08 +01:00
|
|
|
version = "2.0.0"
|
2022-10-21 17:00:51 +01:00
|
|
|
authors = [
|
|
|
|
"ticki <Ticki@users.noreply.github.com>",
|
|
|
|
"gycos <alexandre.bury@gmail.com>",
|
|
|
|
"IGI-111 <igi-111@protonmail.com>",
|
|
|
|
"Jeremy Soller <jackpot51@gmail.com>",
|
|
|
|
]
|
2016-07-23 23:59:01 +01:00
|
|
|
description = "A bindless library for manipulating terminals."
|
2018-06-12 19:30:45 +01:00
|
|
|
repository = "https://gitlab.redox-os.org/redox-os/termion"
|
2016-09-07 10:08:26 +01:00
|
|
|
documentation = "https://docs.rs/termion"
|
2016-07-23 23:59:01 +01:00
|
|
|
license = "MIT"
|
2016-07-24 18:06:05 +01:00
|
|
|
keywords = ["tty", "color", "terminal", "password", "tui"]
|
2016-07-24 00:08:33 +01:00
|
|
|
exclude = ["target", "CHANGELOG.md", "image.png", "Cargo.lock"]
|
2016-03-06 13:55:01 +00:00
|
|
|
|
2018-08-20 23:11:58 +01:00
|
|
|
[dependencies]
|
2021-01-26 19:41:55 +00:00
|
|
|
numtoa = { version = "0.1", features = ["std"]}
|
2021-01-07 12:04:52 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
2018-08-20 23:11:58 +01:00
|
|
|
|
2016-07-02 15:51:50 +01:00
|
|
|
[target.'cfg(not(target_os = "redox"))'.dependencies]
|
2021-01-26 19:41:55 +00:00
|
|
|
libc = "0.2"
|
2017-07-23 18:38:21 +01:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "redox")'.dependencies]
|
2021-01-26 19:41:55 +00:00
|
|
|
redox_syscall = "0.2"
|
2017-07-23 18:38:21 +01:00
|
|
|
redox_termios = "0.1"
|