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
|
[package]
name = "sequoia-keystore-backend"
description = "Traits for private key store backends."
version = "0.7.0"
authors = ["Neal H. Walfield <neal@sequoia-pgp.org>"]
homepage = "https://sequoia-pgp.org/"
repository = "https://gitlab.com/sequoia-pgp/sequoia-keystore"
readme = "README.md"
keywords = ["cryptography", "openpgp" ]
categories = ["cryptography"]
license = "LGPL-2.0-or-later"
edition = "2021"
rust-version = "1.79"
build = "build.rs"
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
anyhow = "1.0.18"
async-trait = "0.1"
env_logger = ">=0.10, <0.12"
futures = { version = "0.3", features = ["executor"] }
log = "0.4.17"
sequoia-openpgp = { version = "2", default-features = false }
thiserror = ">=1, <3"
tempfile = "3"
tokio = { version = "1.19", features = [ "rt-multi-thread", "io-util", "net", "macros" ] }
[target.'cfg(not(windows))'.dev-dependencies]
# Enables a crypto backend for the tests:
sequoia-openpgp = { version = "2", 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 = "2", default-features = false, features = ["crypto-cng", "__implicit-crypto-backend-for-tests"] }
# Enables a crypto backend for the docs.rs generation:
[package.metadata.docs.rs]
features = ["sequoia-openpgp/default"]
|