Files
Malte Meiboom 04322f9cd9 Tor support
- Add support for using Tor via a socks5 proxy.
- Tor usage of the milter and the updater process are configured
  separately.
- Restructure the config file and add some documentation.
2026-08-10 15:12:50 +02:00

56 lines
1.5 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"
chrono = "0.4.45"
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"
rand = "0.10.2"
# the reqwest version has to be the same sequoia-net reexports!
reqwest = { version = "0.12", features = ["socks"] }
sequoia-cert-store = "0.7.3"
sequoia-directories = "0.1.0"
sequoia-keystore = "0.7.2"
sequoia-net = "0.30.1"
sequoia-openpgp = "2.4.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
[patch.crates-io]
sequoia-cert-store = { git = "https://gitlab.com/sequoia-pgp/sequoia-cert-store", branch = "malte/assert_base_dir" }
sequoia-keystore = { git = "https://gitlab.com/sequoia-pgp/sequoia-keystore", branch = "malte/softkey-refresh" }