Files
husk-milter/Cargo.toml
T
Malte Meiboom 94c94d1fce Upgrade dependencies
- Upgrade Sequoia PGP to 2.4.0
- Remove deprecated `sequoia_wot::CertSynopsis::userids()` and replace
  with `self_signed_userids()`.
- Add `lettre` as dependency for its SMTP functionality.
2026-07-03 21:52:26 +02:00

49 lines
1.3 KiB
TOML

[package]
name = "husk"
description="Pass-through solution for automatic OpenPGP encryption"
version = "0.1.0"
edition = "2021"
repository = "https://gitlab.com/husk-project/husk-milter.git"
authors = [ "Malte Meiboom <malte@netropol.de>" ]
readme = "README.md"
keywords = ["cryptography", "openpgp", "pgp", "encryption", "email"]
categories = ["cryptography", "email"]
rust-version = "1.85"
[dependencies]
aho-corasick = "1.1.4"
anyhow = "1.0.100"
bytes = "1.11.1"
clap = { version = "4", features = ["derive"] }
fastrand = "2.4.1"
indymilter = "0.3.0"
lettre = "0.11.22"
log = "0.4.30"
log4rs = "1.3.0"
sequoia-cert-store = "0.7.3"
sequoia-directories = "0.1.0"
#sequoia-keystore = "0.7.2"
sequoia-keystore = { git = "https://gitlab.com/sequoia-pgp/sequoia-keystore", branch = "malte/softkey-refresh" }
sequoia-net = "0.30.1"
sequoia-openpgp = "2.3.0"
sequoia-wot = "0.15.0"
serde = "1.0.228"
serde_derive = "1.0.228"
sysinfo = "0.36.1"
tempfile = "3.27.0"
thiserror = "2.0.17"
tokio = { version = "1.52.3", features = [ "tokio-macros", "rt-multi-thread", "signal" ] }
toml = "0.9.8"
[target.'cfg(unix)'.dependencies]
daemonix = "0.1.0"
[build-dependencies]
anyhow = "1.0.100"
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
[profile.release]
lto = true
codegen-units = 1