minicrossterm/crossterm_cursor/Cargo.toml

19 lines
616 B
TOML
Raw Normal View History

[package]
name = "crossterm_cursor"
2019-06-16 05:51:53 +10:00
version = "0.2.4"
authors = ["T. Post"]
description = "A cross-platform library for moving the terminal cursor."
repository = "https://github.com/TimonPost/crossterm"
documentation = "https://docs.rs/crossterm_cursor/"
license = "MIT"
keywords = ["cursor", "cli", "crossterm", "crossplatform", "terminal"]
exclude = ["target", "Cargo.lock"]
readme = "README.md"
edition = "2018"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.7", features = ["wincon","winnt","minwindef"] }
2019-05-21 02:56:23 +10:00
crossterm_winapi = "0.1.4"
[dependencies]
crossterm_utils = {path="../crossterm_utils"}