minicrossterm/Cargo.toml

52 lines
1.3 KiB
TOML
Raw Normal View History

2018-01-04 00:43:54 +11:00
[package]
name = "crossterm"
2019-01-28 07:54:50 +11:00
version = "0.6.0"
2018-08-25 20:00:39 +10:00
authors = ["T. Post"]
2018-05-20 22:44:14 +10:00
description = "An crossplatform terminal library for manipulating terminals."
2018-01-19 09:10:44 +11:00
repository = "https://github.com/TimonPost/crossterm"
documentation = "https://docs.rs/crossterm/"
2018-01-19 09:10:44 +11:00
license = "MIT"
keywords = ["console", "color", "cursor", "input", "terminal"]
2018-01-19 09:10:44 +11:00
exclude = ["target", "Cargo.lock"]
2018-05-20 22:44:14 +10:00
readme = "README.md"
2018-01-04 00:43:54 +11:00
[features]
default = ["cursor", "style","terminal","screen","input"]
2018-01-04 00:43:54 +11:00
cursor = ["crossterm_cursor"]
style = ["crossterm_style"]
terminal = ["crossterm_terminal"]
screen = ["crossterm_screen"]
input = ["crossterm_input"]
[workspace]
members = [
"crossterm_winapi",
"crossterm_utils",
"crossterm_cursor",
"crossterm_style",
"crossterm_terminal",
"crossterm_input",
"crossterm_screen",
]
[dependencies]
2019-02-23 01:20:24 +11:00
crossterm_screen = { optional = true, version = "0.1.0" }
crossterm_cursor = { optional = true, version = "0.1.0" }
crossterm_terminal = { optional = true, version = "0.1.0" }
crossterm_style = { optional = true, version = "0.1.0" }
crossterm_input = { optional = true, version = "0.1.0" }
crossterm_utils = { version = "0.1.0" }
2018-03-04 01:40:51 +11:00
[lib]
name = "crossterm"
path = "src/lib.rs"
2018-07-19 23:11:36 +10:00
[[example]]
name = "logging"
path = "examples/program_examples/logging.rs"
[[example]]
2018-08-22 02:05:53 +10:00
name = "command_bar"
path = "examples/program_examples/command_bar.rs"