27 lines
1.0 KiB
TOML
27 lines
1.0 KiB
TOML
name = "get_password"
|
|
description = "Read a string without echo, in password-like style"
|
|
version = "1.0.0-rc"
|
|
long-description = "This is a small Ada library that provides a procedure Get_Password that reads a string from the terminal replacing each character with a *. The input can be terminated both by the user pressing end-of-line or when the buffer is filled. Currently it works only on POSIX-based system. This version was checked with Spark"
|
|
licenses = "MIT"
|
|
website = "https://gitlab.com/my-ada-library/get_password"
|
|
|
|
authors = ["Riccardo Bernardini"]
|
|
maintainers = ["Riccardo Bernardini <riccardo.bernardini@uniud.it>"]
|
|
maintainers-logins = ["fintatarta"]
|
|
tags = ["password", "echo", "textio"]
|
|
|
|
[gpr-set-externals.'case(os)']
|
|
linux = { OS_FOR_GPR = "posix" }
|
|
windows = { OS_FOR_GPR = "windows" }
|
|
macos = { OS_FOR_GPR = "posix" }
|
|
|
|
[available.'case(os)']
|
|
linux = true
|
|
windows = false
|
|
macos = false
|
|
|
|
[origin]
|
|
commit = "0999eb5b4890649c73fc0327ef7514de4fb73df7"
|
|
url = "git+https://gitlab.com/my-ada-library/get_password.git"
|
|
|