1
0
Fork 0

Adding upstream version 0.2.3.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-05 06:17:43 +01:00
parent c7e0ec57a4
commit 7f48381065
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
14 changed files with 647 additions and 0 deletions

22
Cargo.toml.orig generated Normal file
View file

@ -0,0 +1,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"] }