[package] name = "sequoia-gpg-agent" description = "A library for interacting with GnuPG's gpg-agent" version = "0.5.0" authors = [ "Justus Winter ", "Neal H. Walfield ", ] edition = "2021" keywords = ["cryptography", "openpgp", "pgp", "encryption", "signing"] categories = ["cryptography", "authentication"] license = "LGPL-2.0-or-later" documentation = "https://docs.rs/sequoia-gpg-agent" homepage = "https://sequoia-pgp.org/" repository = "https://gitlab.com/sequoia-pgp/sequoia-gpg-agent" readme = "README.md" rust-version = "1.70" build = "build.rs" [badges] gitlab = { repository = "sequoia-pgp/sequoia-gpg-agent" } maintenance = { status = "actively-developed" } [dependencies] anyhow = "1" chrono = "0.4" futures = "0.3" lalrpop-util = ">=0.17, <0.23" libc = "0.2.152" sequoia-openpgp = { version = "1.19", default-features = false, features = ["compression"] } sequoia-ipc = "0.35.0" stfu8 = "0.2" tempfile = "3.1" thiserror = "1.0.38" tokio = { version = "1.35.0", default-features = false, features = ["rt"] } [dev-dependencies] clap = { version = "4", features = ["derive", "env", "string", "wrap_help"] } lazy_static = "1.4.0" tempfile = "3.1" tokio = { version = "1.35.0", default-features = false, features = ["macros"] } tokio-test = "0.4" [build-dependencies] lalrpop = { version = ">=0.17, <0.23", default-features = false } [profile.release] debug = true [target.'cfg(not(windows))'.dev-dependencies] # Enables a crypto backend for the tests: sequoia-openpgp = { version = "1", default-features = false, features = ["crypto-nettle", "__implicit-crypto-backend-for-tests"] } [target.'cfg(windows)'.dev-dependencies] # Enables a crypto backend for the tests: sequoia-openpgp = { version = "1", default-features = false, features = ["crypto-cng", "__implicit-crypto-backend-for-tests"] } [package.metadata.docs.rs] # Enables a crypto backend for the docs.rs generation: features = ["sequoia-openpgp/default"]