Files
husk-milter/Cargo.toml
T
Malte Meiboom 56647806b7 Steps towards encryption
- Added certstore and retrieval of the local trust root.
- Major work on keeping the context between calls to the milter.
- Added a context for an email in processing
- Added Husk specific errors
2025-12-09 12:11:07 +01:00

27 lines
752 B
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.79"
[dependencies]
anyhow = "1.0.100"
bytes = "1.10.1"
indymilter = "0.3.0"
log = "0.4.27"
log4rs = "1.3.0"
sequoia-cert-store = "0.7.1"
sequoia-directories = "0.1.0"
sequoia-openpgp = "2.1.0"
serde = "1.0.228"
serde_derive = "1.0.228"
thiserror = "2.0.17"
tokio = { version = "1.47.1", features = [ "tokio-macros", "rt-multi-thread", "signal" ] }
toml = "0.9.8"