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