-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (38 loc) · 1.14 KB
/
Copy pathCargo.toml
File metadata and controls
40 lines (38 loc) · 1.14 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
[package]
name = "mailserver"
version = "1.0.0"
edition = "2021"
[[bin]]
name = "mailserver"
path = "src/main.rs"
[dependencies]
axum = { version = "0.7", features = ["form", "multipart"] }
tokio = { version = "1", features = ["full"] }
postgres = "0.19"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["v4"] }
chrono = { version = "0.4", features = ["serde"] }
bcrypt = "0.15"
base64 = "0.22"
hmac = "0.12"
sha1 = "0.10"
sha2 = "0.10"
data-encoding = "2"
rand = "0.8"
tower-http = { version = "0.5", features = ["fs"] }
lettre = { version = "0.11", default-features = false, features = ["builder", "smtp-transport", "tokio1-rustls-tls"] }
mailparse = "0.15"
http = "1"
tower = "0.4"
log = "0.4"
env_logger = "0.11"
askama = "0.12"
regex = "1"
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
quick-xml = "0.39"
flate2 = "1"
zip = { version = "8", default-features = false, features = ["deflate"] }
tokio-stream = { version = "0.1", features = ["sync"] }
hex = "0.4"
russh = { version = "0.60.2", default-features = false, features = ["flate2", "ring"] }