-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (41 loc) · 1.42 KB
/
Copy pathCargo.toml
File metadata and controls
42 lines (41 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "dmarc-report-viewer"
description = "Standalone DMARC and SMTP TLS report viewer that fetches input data periodically from an IMAP mailbox"
keywords = ["dmarc", "email"]
categories = ["email"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/cry-inc/dmarc-report-viewer"
version = "2.5.1"
edition = "2024"
[dependencies]
axum = "0.8"
anyhow = "1"
flate2 = "1"
sha2 = "0.11"
cron = "0.16"
regex = "1.11"
futures = "0.3"
tracing = "0.1"
base64 = "0.22"
serde_json = "1"
urlencoding = "2"
mailparse = "0.16"
tokio-util = "0.7"
webpki-roots = "1"
axum-server = "0.8"
encoding_rs = "0.8"
dns-protocol = "0.1"
tokio-rustls = "0.26"
http-body-util = "0.1"
tracing-subscriber = "0.3.20"
serde = { version = "1", features = ["derive"] }
hyper = { version = "1", features = ["client"] }
rustls-acme = { version = "0.15", features = ["axum"] }
hyper-util = { version = "0.1", default-features = false }
quick-xml = { version = "0.40", features = ["serialize"] }
zip = { version = "8", default-features = false, features = ["deflate"] }
tokio = { version = "1.36", features = ["macros", "rt-multi-thread", "signal", "fs"] }
async-imap = { version = "0.11", default-features = false, features = ["runtime-tokio"] }
chrono = { version = "0.4.20", default-features = false, features = ["std", "clock", "serde"] }
clap = { version = "4", default-features = false, features = ["std", "derive", "help", "env", "usage", "suggestions"] }