himalaya/Cargo.toml

27 lines
665 B
TOML
Raw Normal View History

2020-12-23 23:55:57 +00:00
[package]
name = "himalaya"
description = "📫 CLI email client"
2021-06-03 14:15:46 +00:00
version = "0.4.0"
2020-12-25 21:39:16 +00:00
authors = ["soywod <clement.douin@posteo.net>"]
2020-12-23 23:55:57 +00:00
edition = "2018"
[dependencies]
2021-05-31 12:19:55 +00:00
atty = "0.2.14"
chrono = "0.4.19"
clap = {version = "2.33.3", default-features = false, features = ["suggestions", "color"]}
2021-04-08 22:15:16 +00:00
env_logger = "0.8.3"
2021-03-12 21:59:08 +00:00
error-chain = "0.12.4"
2021-05-09 19:40:37 +00:00
imap = "3.0.0-alpha.3"
update lettre to v0.10.0-rc.1 (#150) $ cargo update -p lettre --aggressive Updating crates.io index Updating aho-corasick v0.7.15 -> v0.7.18 Removing bytes v1.0.1 Updating cc v1.0.66 -> v1.0.67 Adding fastrand v1.4.1 Removing getrandom v0.1.15 Removing http v0.2.3 Removing httparse v1.3.5 Updating httpdate v0.3.2 -> v1.0.0 Removing hyperx v1.3.0 Updating idna v0.2.0 -> v0.2.3 Removing language-tags v0.2.2 Updating lettre v0.10.0-beta.3 -> v0.10.0-rc.1 Updating libc v0.2.88 -> v0.2.94 Updating lock_api v0.4.3 -> v0.4.4 Updating memchr v2.3.4 -> v2.4.0 Updating native-tls v0.2.6 -> v0.2.7 Updating once_cell v1.5.2 -> v1.7.2 Updating openssl v0.10.32 -> v0.10.34 Updating openssl-probe v0.1.2 -> v0.1.4 Updating openssl-sys v0.9.60 -> v0.9.63 Updating parking_lot_core v0.8.2 -> v0.8.3 Removing percent-encoding v2.1.0 Updating quoted_printable v0.4.2 -> v0.4.3 Removing rand v0.7.3 Removing rand_chacha v0.2.2 Removing rand_core v0.5.1 Removing rand_hc v0.2.0 Adding redox_syscall v0.2.8 Updating regex v1.4.2 -> v1.5.4 Updating regex-syntax v0.6.21 -> v0.6.25 Updating security-framework v2.0.0 -> v2.2.0 Updating security-framework-sys v2.0.0 -> v2.2.0 Updating smallvec v1.6.0 -> v1.6.1 Updating tempfile v3.1.0 -> v3.2.0 Removing thread_local v1.0.1 Updating tinyvec v1.1.0 -> v1.2.0 Removing unicase v2.6.0 Updating unicode-bidi v0.3.4 -> v0.3.5 Updating unicode-normalization v0.1.16 -> v0.1.17 Updating vcpkg v0.2.11 -> v0.2.12 Updating version_check v0.9.2 -> v0.9.3 Removing wasi v0.9.0+wasi-snapshot-preview1
2021-05-14 16:49:31 +00:00
lettre = "0.10.0-rc.1"
2021-04-08 22:15:16 +00:00
log = "0.4.14"
2021-01-03 16:28:42 +00:00
mailparse = "0.13.1"
2020-12-25 21:39:16 +00:00
native-tls = "0.2"
rfc2047-decoder = "0.1.2"
serde = {version = "1.0.118", features = ["derive"]}
2021-01-17 09:03:19 +00:00
serde_json = "1.0.61"
2021-01-16 18:38:03 +00:00
terminal_size = "0.1.15"
2020-12-23 23:55:57 +00:00
toml = "0.5.8"
tree_magic = "0.2.3"
2021-04-08 10:59:44 +00:00
unicode-width = "0.1.7"
uuid = {version = "0.8", features = ["v4"]}