minicrossterm/Cargo.toml

50 lines
1.4 KiB
TOML
Raw Normal View History

2018-01-04 00:43:54 +11:00
[package]
name = "crossterm"
2019-09-25 03:45:59 +10:00
version = "0.11.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."
2019-09-25 03:45:59 +10:00
repository = "https://github.com/crossterm-rs/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"
2019-09-16 21:34:08 +10:00
edition = "2018"
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"
]
2019-09-06 00:14:33 +10:00
exclude = [
"examples/program_examples"
]
[dependencies]
2019-09-25 03:45:59 +10:00
crossterm_screen = { path = "./crossterm_screen", version = "0.3.0" , optional = true }
crossterm_cursor = { path = "./crossterm_cursor", version = "0.3.0" , optional = true }
crossterm_terminal = { path = "./crossterm_terminal", version = "0.3.0", optional = true }
crossterm_style = { path = "./crossterm_style", version = "0.5.0" , optional = true }
crossterm_input = { path = "./crossterm_input", version = "0.4.0" , optional = true }
crossterm_utils = { path = "./crossterm_utils", version = "0.3.0" , optional = false }
2018-03-04 01:40:51 +11:00
[lib]
name = "crossterm"
path = "src/lib.rs"