panorama/imap/Cargo.toml
2021-08-09 06:29:48 -05:00

43 lines
1.1 KiB
TOML

[package]
name = "panorama-imap"
description = "IMAP protocol implementation with high-level async client."
version = "0.0.3"
edition = "2018"
authors = ["Michael Zhang <mail@mzhang.io>"]
keywords = ["imap", "email", "parser"]
license = "GPL-3.0-or-later"
categories = ["email"]
repository = "https://git.mzhang.io/michael/panorama"
documentation = "https://docs.rs/panorama-imap"
readme = "README.md"
workspace = ".."
[[bin]]
name = "mzhang-test"
path = "bin/mzhang_test.rs"
required-features = ["stderrlog"]
[features]
default = ["rfc2177", "rfc6154"]
low-level = []
rfc2087 = [] # quota
rfc2177 = [] # idle
rfc6154 = [] # list
[dependencies]
anyhow = "1.0.42"
async-trait = "0.1.51"
bitflags = "1.2.1"
bstr = "0.2.15"
bytes = "1.0.1"
chrono = "0.4.19"
derive_builder = "0.10.2"
format-bytes = "0.2.2"
futures = "0.3.16"
log = "0.4.14"
nom = "6.2.1"
stderrlog = { version = "0.5.1", optional = true }
tokio = { version = "1.9.0", features = ["full"] }
tokio-rustls = { version = "0.22.0", features = ["dangerous_configuration"] }
tokio-util = { version = "0.6.7", features = ["codec"] }
webpki-roots = "0.21.1"