TOMLCargo.toml -rw-r--r-- 1.2 KiB
1[package]
2name = "mail-auth"
3description = "DKIM, ARC, SPF and DMARC library for Rust"
4version = "0.2.0"
5edition = "2021"
6authors = [ "Stalwart Labs <hello@stalw.art>"]
7license = "Apache-2.0 OR MIT"
8repository = "https://github.com/stalwartlabs/mail-auth"
9homepage = "https://github.com/stalwartlabs/mail-auth"
10keywords = ["dkim", "dmarc", "spf", "arc", "mail"]
11categories = ["email", "authentication"]
12readme = "README.md"
13resolver = "2"
14
15[lib]
16doctest = false
17
18[dependencies]
19mail-parser = { version = "0.8", git = "https://github.com/stalwartlabs/mail-parser", features = ["ludicrous_mode", "full_encoding"] }
20mail-builder = { version = "0.2.4", git = "https://github.com/stalwartlabs/mail-builder", features = ["ludicrous_mode"] }
21rsa = {version = "0.7.0"}
22ed25519-dalek = "1.0.1"
23sha1 = {version = "0.10", features = ["oid"]}
24sha2 = {version = "0.10.6", features = ["oid"]}
25trust-dns-resolver = { version = "0.22.0", features = ["dns-over-rustls"] }
26lru-cache = "0.1.2"
27parking_lot = "0.12.0"
28ahash = "0.8.0"
29quick-xml = "0.26.0"
30serde = { version = "1.0", features = ["derive"] }
31zip = "0.6.3"
32flate2 = "1.0.25"
33
34[dev-dependencies]
35tokio = { version = "1.16", features = ["net", "io-util", "time", "rt-multi-thread", "macros"] }
36serde_json = "1.0"