[package]
name = "sequoia-net"
description = "Network services for OpenPGP"
version = "0.30.0"
authors = [
"Justus Winter <[email protected]>",
"Kai Michaelis <[email protected]>",
"Neal H. Walfield <[email protected]>",
]
documentation = "https://docs.rs/sequoia-net"
homepage = "https://sequoia-pgp.org/"
repository = "https://gitlab.com/sequoia-pgp/sequoia"
readme = "README.md"
keywords = ["cryptography", "openpgp", "pgp", "hkp", "keyserver"]
categories = ["cryptography", "authentication", "email"]
license = "LGPL-2.0-or-later"
edition = "2021"
rust-version = "1.79"
[badges]
gitlab = { repository = "sequoia-pgp/sequoia" }
maintenance = { status = "actively-developed" }
[dependencies]
sequoia-openpgp = { version = "2", path = "../openpgp", default-features = false }
anyhow = "1.0.18"
futures-util = "0.3.5"
http = "1"
hyper = { version = "1", features = [ "http1", "http2" ] }
hyper-tls = "0.6"
libc = "0.2.66"
percent-encoding = "2.1"
reqwest = "0.12"
thiserror = "1.0.2"
url = "2.1"
z-base-32 = "0.1.2"
tokio = { version = "1.13.1", features = [ "macros" ] }
base64 = ">= 0.21, < 0.23"
hickory-client = "0.24"
hickory-resolver = { version = "0.24", features = ["dnssec-openssl"]}
[dev-dependencies]
bytes = "1"
http-body-util = "0.1"
hyper = { version = "1", features = [ "server" ] }
hyper-util = { version = "0.1", features = ["full"] }
rand = { version = "0.8", default-features = false, features = [ "getrandom" ] }
reqwest = { version = "0.12", features = ["socks"] }
tempfile = "3.1"
[lib]
bench = false
[target.'cfg(not(windows))'.dev-dependencies]
sequoia-openpgp = { version = "2", path = "../openpgp", default-features = false, features = ["crypto-nettle", "__implicit-crypto-backend-for-tests"] }
[target.'cfg(windows)'.dev-dependencies]
sequoia-openpgp = { version = "2", path = "../openpgp", default-features = false, features = ["crypto-cng", "__implicit-crypto-backend-for-tests"] }
[package.metadata.docs.rs]
features = ["sequoia-openpgp/default"]