forked from seijikun/idlemail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (29 loc) · 796 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
33
[package]
name = "idlemail"
version = "0.3.0"
authors = ["Markus Ebner <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4"
pretty_env_logger = "0.4"
anyhow = "1.0"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
signal = "0.7"
time = "0.3"
lettre = { version = "0.10.0-rc.5", features = [ "smtp-transport", "builder" ] }
async-imap = "0.5"
async-std = "1.11.0"
futures = "^0.3"
async-native-tls = "^0.3"
native-tls = "^0.2"
magic = "0.16.2"
clap = { version = "4.5", features = ["derive"] }
# Temporary force funty version ( workaround for https://github.com/bitvecto-rs/bitvec/issues/105 )
funty = "=1.1.0"
[dev-dependencies]
test-case = "2"
tempfile = "3.3"
md5 = "0.7"