-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (29 loc) · 855 Bytes
/
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
[package]
name = "mailhook"
version = "2.0.3"
authors = ["Alex.F <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
simplelog = "0.12.2"
mailin-embedded = { git = "https://code.alienscience.org/gfreezy/mailin", features = [
"rtls",
], branch = "master" }
anyhow = "1.0"
actix-web = "4.8.0"
serde = { version = "1.0", features = ["serde_derive"] }
rusqlite = { version = "0.31", features = ["bundled"] }
log = "0.4"
melib = { version = "0.8.6", default-features = false, features = [
"smtp",
"tls-static",
] }
ureq = { version = "2", features = ["json"] }
serde_json = "1.0"
actix-files = "0.6.6"
md5 = "0.7"
uuid = { version = "1.9.1", features = ["v4"] }
once_cell = "1.5.2"
ureq_multipart = "1.1.1"
[dev-dependencies]
expect-test = "1.1"