-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (37 loc) · 976 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
34
35
36
37
38
39
40
41
42
43
[package]
name = "termail"
version = "0.1.1"
authors = ["tramhao <haoxinkui@gmail.com>"]
edition = "2018"
license = "MIT"
description = "Terminal Mail client written in Rust. WIP"
repository = "https://github.com/tramhao/termail"
homepage = "https://github.com/tramhao/termail"
keywords = ["terminal", "tui","mail","client","email"]
categories = ["command-line-interface","command-line-utilities", ]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "termail"
path = "src/main.rs"
[dependencies]
anyhow = "1.0"
chrono = "0.4"
crossterm = "0.20"
dirs-next = "2.0"
log = "0.4"
maildir = "0.5"
mailparse = "0.13"
scraper = "0.12"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
shellexpand = "2.1"
toml = "0.5"
tuirealm = "0.6"
tui-realm-stdlib = "0.6"
tui-realm-treeview = "0.3"
[features]
default = []
[dev-dependencies]
pretty_assertions = "0.7"
[profile.release]