summaryrefslogtreecommitdiffstats
path: root/Cargo.toml.orig
blob: 360a8fc68464570a5b03b69ef51318d29ffea809 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "terminal-prompt"
version = "0.2.3"
description = "Tiny library for prompting sensitive or non-sensitive data on the terminal"
license = "BSD-2-Clause"

authors = ["Maarten de Vries <maarten@de-vri.es>"]
repository = "https://github.com/de-vri-es/terminal-prompt-rs"
documentation = "https://docs.rs/terminal-prompt"

keywords = ["terminal", "console", "prompt", "input", "tty"]
categories = ["command-line-interface", "os"]

publish = ["crates-io"]
edition = "2021"
 rust-version = "1.66"

[target.'cfg(unix)'.dependencies]
libc = "0.2.147"

[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["consoleapi"] }