1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
[package]
name = "sequoia-keystore-server"
description = "Sequoia keystore daemon"
version = "0.2.0"
authors = [
"Neal H. Walfield <neal@sequoia-pgp.org>",
]
documentation = "https://docs.rs/sequoia-keystore-server"
homepage = "https://sequoia-pgp.org/"
repository = "https://gitlab.com/sequoia-pgp/sequoia-keystore"
readme = "README.md"
keywords = ["cryptography", "openpgp", "pgp"]
categories = ["cryptography", "authentication", "command-line-utilities"]
license = "LGPL-2.0-or-later"
edition = "2021"
rust-version = "1.79"
[badges]
gitlab = { repository = "sequoia-pgp/sequoia-keystore" }
maintenance = { status = "actively-developed" }
[dependencies]
anyhow = "1.0.18"
clap = { version = "4", features = ["derive", "env", "string", "wrap_help"] }
dirs = "5"
sequoia-directories = "0.1"
sequoia-keystore = { path = "../keystore", version = "0.7" }
sequoia-ipc = { version = "0.36", default-features = false }
sequoia-openpgp = { version = "2", default-features = false }
[[bin]]
name = "sequoia-keystore"
path = "src/server.rs"
bench = false
[features]
default = [
"crypto-nettle",
]
crypto-nettle = ["sequoia-openpgp/crypto-nettle"]
crypto-openssl = ["sequoia-openpgp/crypto-openssl"]
crypto-botan = ["sequoia-openpgp/crypto-botan"]
crypto-botan2 = ["sequoia-openpgp/crypto-botan2"]
crypto-cng = ["sequoia-openpgp/crypto-cng"]
crypto-rust = ["sequoia-openpgp/crypto-rust"]
|