panorama/imap/Cargo.toml

42 lines
1.1 KiB
TOML
Raw Normal View History

2021-08-06 02:26:39 +00:00
[package]
2021-08-08 23:53:21 +00:00
name = "panorama-imap"
2021-08-08 23:58:30 +00:00
description = "IMAP protocol implementation with high-level async client."
2021-08-09 06:32:40 +00:00
version = "0.0.3"
2021-08-06 02:26:39 +00:00
edition = "2018"
2021-08-08 23:58:30 +00:00
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 = ".."
2021-08-06 02:26:39 +00:00
2021-08-08 06:41:07 +00:00
[[bin]]
2021-08-09 05:36:10 +00:00
name = "mzhang-test"
path = "bin/mzhang_test.rs"
required-features = ["stderrlog"]
2021-08-08 06:41:07 +00:00
2021-08-06 02:26:39 +00:00
[features]
2021-08-09 05:42:41 +00:00
default = ["rfc2177", "rfc6154"]
2021-08-09 06:28:54 +00:00
low-level = []
2021-08-09 05:42:41 +00:00
rfc2087 = [] # quota
rfc2177 = [] # idle
rfc6154 = [] # list
2021-08-06 02:26:39 +00:00
[dependencies]
anyhow = "1.0.42"
2021-08-08 05:54:01 +00:00
async-trait = "0.1.51"
bitflags = "1.2.1"
2021-08-06 02:26:39 +00:00
bytes = "1.0.1"
chrono = "0.4.19"
2021-08-06 02:26:39 +00:00
derive_builder = "0.10.2"
futures = "0.3.16"
log = "0.4.14"
nom = "6.2.1"
tokio = { version = "1.9.0", features = ["full"] }
2021-08-09 05:36:10 +00:00
tokio-rustls = { version = "0.22.0", features = ["dangerous_configuration"] }
2021-08-06 02:26:39 +00:00
tokio-util = { version = "0.6.7", features = ["codec"] }
webpki-roots = "0.21.1"
2021-08-09 05:36:10 +00:00
stderrlog = { version = "0.5.1", optional = true }