[package] name = "panorama-imap" description = "IMAP protocol implementation with high-level async client." version = "0.0.2" edition = "2018" authors = ["Michael Zhang "] 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-idle"] rfc2177-idle = [] [dependencies] anyhow = "1.0.42" async-trait = "0.1.51" bitflags = "1.2.1" bytes = "1.0.1" chrono = "0.4.19" derive_builder = "0.10.2" futures = "0.3.16" log = "0.4.14" nom = "6.2.1" 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" stderrlog = { version = "0.5.1", optional = true }