[package] name = "mail-auth" description = "DKIM, ARC, SPF and DMARC library for Rust" version = "0.2.0" edition = "2021" authors = [ "Stalwart Labs "] license = "Apache-2.0 OR MIT" repository = "https://github.com/stalwartlabs/mail-auth" homepage = "https://github.com/stalwartlabs/mail-auth" keywords = ["dkim", "dmarc", "spf", "arc", "mail"] categories = ["email", "authentication"] readme = "README.md" resolver = "2" [lib] doctest = false [dependencies] mail-parser = { version = "0.8", git = "https://github.com/stalwartlabs/mail-parser", features = ["ludicrous_mode", "full_encoding"] } mail-builder = { version = "0.2.5", git = "https://github.com/stalwartlabs/mail-builder", features = ["ludicrous_mode"] } rsa = {version = "0.7.0"} ed25519-dalek = "1.0.1" sha1 = {version = "0.10", features = ["oid"]} sha2 = {version = "0.10.6", features = ["oid"]} trust-dns-resolver = { version = "0.22.0", features = ["dns-over-rustls", "dnssec-ring"] } lru-cache = "0.1.2" parking_lot = "0.12.0" ahash = "0.8.0" quick-xml = "0.27.1" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" zip = "0.6.3" flate2 = "1.0.25" [dev-dependencies] tokio = { version = "1.16", features = ["net", "io-util", "time", "rt-multi-thread", "macros"] } [features] test = []