minicrossterm/crossterm_terminal/Cargo.toml
Timon 1a60924abd
Command API experiment (#175)
- Command API to introduce easier usability, better performance, and more control over to which buffer to write, and when to flush the buffer to the terminal.
2019-07-24 20:10:27 +02:00

22 lines
642 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 = "0.1.4"
[target.'cfg(unix)'.dependencies]
libc = "0.2.51"
[dependencies]
crossterm_utils = {path="../crossterm_utils"}
crossterm_cursor = {path="../crossterm_cursor"}