2023-11-05 05:45:47 +00:00
|
|
|
[package]
|
|
|
|
# name = "pinentry"
|
|
|
|
name = "keyfork-pinentry"
|
|
|
|
description = "API for interacting with pinentry binaries"
|
|
|
|
version = "0.5.0"
|
|
|
|
# authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
|
|
|
authors = ["Ryan Heywood <ryan@distrust.co>"]
|
|
|
|
# repository = "https://github.com/str4d/pinentry-rs"
|
|
|
|
# readme = "README.md"
|
|
|
|
# keywords = ["passphrase", "password"]
|
|
|
|
# categories = ["api-bindings", "command-line-interface"]
|
|
|
|
# license = "MIT OR Apache-2.0"
|
|
|
|
license = "MIT"
|
2023-11-05 22:21:16 +00:00
|
|
|
# edition = "2018"
|
|
|
|
edition = "2021"
|
2023-11-05 05:45:47 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
nom = { version = "7", default-features = false }
|
|
|
|
percent-encoding = "2.1"
|
|
|
|
secrecy = "0.8"
|
|
|
|
thiserror = "1.0.50"
|
|
|
|
which = { version = "4", default-features = false }
|
|
|
|
zeroize = "1"
|