34 lines
1.0 KiB
TOML
34 lines
1.0 KiB
TOML
[package]
|
|
name = "crossterm"
|
|
version = "0.11.1"
|
|
authors = ["T. Post"]
|
|
description = "An crossplatform terminal library for manipulating terminals."
|
|
repository = "https://github.com/crossterm-rs/crossterm"
|
|
documentation = "https://docs.rs/crossterm/"
|
|
license = "MIT"
|
|
keywords = ["console", "color", "cursor", "input", "terminal"]
|
|
exclude = ["target", "Cargo.lock"]
|
|
readme = "README.md"
|
|
edition = "2018"
|
|
|
|
[features]
|
|
default = ["cursor", "style", "terminal", "screen", "input"]
|
|
|
|
cursor = ["crossterm_cursor"]
|
|
style = ["crossterm_style"]
|
|
terminal = ["crossterm_terminal"]
|
|
screen = ["crossterm_screen"]
|
|
input = ["crossterm_input"]
|
|
|
|
[dependencies]
|
|
crossterm_screen = { version = "0.3.1" , optional = true }
|
|
crossterm_cursor = { version = "0.3.1" , optional = true }
|
|
crossterm_terminal = { version = "0.3.1", optional = true }
|
|
crossterm_style = { version = "0.5.1" , optional = true }
|
|
crossterm_input = { version = "0.4.1" , optional = true }
|
|
crossterm_utils = { version = "0.3.1" , optional = false }
|
|
|
|
[lib]
|
|
name = "crossterm"
|
|
path = "src/lib.rs"
|