Files
husk-milter/Cargo.toml
T
Malte Meiboom ee6b467139 Add daemon CLI commands
- Introduce option `--background` for `daemon start` to send the new
  process into the background.
- Implement a `ProcessDescr` which identifies a Husk process. This pays
  attention to the possibility of a rollover of the process ids.
- Implement `daemon status`.
- Implement `daemon stop` which sends `SIG_INT` to a running Husk
  process.
2026-06-30 12:17:07 +02:00

44 lines
1.2 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"
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"