-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (30 loc) · 1.01 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
[package]
name = "smtp-s3-dump"
version = "0.1.0"
edition = "2021"
license = "GPL-3.0-or-later" # due to smtpbis
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
arc-swap = "1.6.0"
async-trait = "0.1.73"
aws-config = "0.56.1"
aws-sdk-s3 = "0.33.0"
bytes = "1"
futures = "0.3.28"
mail-parser = "0.9.1"
mime_guess = "2"
notify = { version = "6.1.1", default-features = false }
notify-debouncer-mini = { version = "0.4.1", default-features = false }
rustls-pemfile = "1.0.3"
rustyknife = "0.2.11"
serde_json = "1.0.107"
smtpbis = { git = "https://github.com/ibotty/smtpbis", branch = "update" }
sqlx = { version = "0.7.2", features = ["runtime-tokio", "tls-rustls", "postgres"] }
thiserror = "1"
tokio = { version = "1", features = ["tracing", "macros", "rt-multi-thread", "signal"] }
tokio-rustls = "0.24.1"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "std", "registry", "fmt"] }
[profile.release]
strip = true