- Mark reinjected mails so that Husk can shortcut the processing. - Fix Cargo.toml to correctly include the patched version of sequoia-cert-store and sequoia-keystore.
53 lines
1.4 KiB
TOML
53 lines
1.4 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"
|
|
sequoia-cert-store = "0.7.3"
|
|
sequoia-directories = "0.1.0"
|
|
sequoia-keystore = "0.7.2"
|
|
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
|
|
|
|
[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" }
|