762c3a9b8e
- Removed input parsing WinAPI
22 lines
683 B
TOML
22 lines
683 B
TOML
[package]
|
|
name = "crossterm_terminal"
|
|
version = "0.2.4"
|
|
authors = ["T. Post"]
|
|
description = "A cross-platform library for doing terminal related actions."
|
|
repository = "https://github.com/TimonPost/crossterm"
|
|
documentation = "https://docs.rs/crossterm_terminal/"
|
|
license = "MIT"
|
|
keywords = ["terminal", "clear", "console", "crossterm", "size"]
|
|
exclude = ["target", "Cargo.lock"]
|
|
readme = "README.md"
|
|
edition = "2018"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
crossterm_winapi = { path="../crossterm_winapi", version = "0.1.4"}
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2.51"
|
|
|
|
[dependencies]
|
|
crossterm_utils = {path="../crossterm_utils"}
|
|
crossterm_cursor = {path="../crossterm_cursor"} |