-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (37 loc) · 1.22 KB
/
Cargo.toml
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
[package]
name = "ma"
version = "0.10.4"
description = "Mail Archivist"
repository = "https://github.com/xandkar/ma"
authors = ["Siraaj Khandkar <[email protected]>"]
keywords = ["mail", "email", "archive", "database"]
categories = ["email", "command-line-utilities"]
license-file = "LICENSE"
readme = "README.md"
edition = "2021"
[dependencies]
anyhow = { version = "1.0.86", features = ["backtrace"] }
async-imap = { version = "0.9.7", default-features = false, features = ["runtime-tokio"] }
clap = { version = "4.5.10", features = ["derive"] }
console = { version = "0.15.8", default-features = false, features = ["ansi-parsing"] }
flate2 = "1.0.30"
futures = "0.3.30"
human-panic = "2.0.1"
indicatif = "0.17.8"
mail-parser = "0.9.3"
mailparse = "0.15.0"
rustls = "0.22.2"
rustls-pki-types = "1.1.0"
serde = { version = "1.0.204", features = ["derive"] }
sha2 = "0.10.8"
sqlx = { version = "0.8.0", features = ["runtime-tokio", "sqlite"] }
thiserror = "1.0.63"
tokio = { version = "1.39.1", features = ["full", "tracing"] }
tokio-rustls = "0.25.0"
toml = "0.8.16"
tracing = "0.1.40"
tracing-appender = "0.2.3"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
webpki-roots = "0.26.0"
[dev-dependencies]
tempfile = "3.10.1"