himalaya/Cargo.toml
Clément DOUIN cddb7bde37
refactor table system (#132)
* init table trait

* add shrink_col_index and max_width method to Table trait

* make unicodes work when shrinking

* improve readability of the table

* replace old table system with new one

* update changelog
2021-04-27 14:54:53 +02:00

26 lines
634 B
TOML

[package]
name = "himalaya"
description = "📫 CLI email client"
version = "0.2.7"
authors = ["soywod <clement.douin@posteo.net>"]
edition = "2018"
[dependencies]
chrono = "0.4.19"
clap = {version = "2.33.3", default-features = false, features = ["suggestions"]}
env_logger = "0.8.3"
error-chain = "0.12.4"
imap = "2.4.0"
lettre = "0.10.0-beta.3"
log = "0.4.14"
mailparse = "0.13.1"
native-tls = "0.2"
rfc2047-decoder = "0.1.2"
serde = {version = "1.0.118", features = ["derive"]}
serde_json = "1.0.61"
terminal_size = "0.1.15"
toml = "0.5.8"
tree_magic = "0.2.3"
unicode-width = "0.1.7"
uuid = {version = "0.8", features = ["v4"]}