panorama/imap/Cargo.toml

51 lines
1.4 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 11:50:19 +00:00
version = "0.0.4"
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
[features]
2021-11-02 02:31:15 +00:00
default = ["pool", "rfc2177", "rfc6154"]
2021-08-09 06:28:54 +00:00
low-level = []
2021-11-02 02:31:15 +00:00
pool = ["crossbeam"]
2021-08-09 05:42:41 +00:00
rfc2087 = [] # quota
rfc2177 = [] # idle
2021-09-07 11:30:11 +00:00
rfc4315 = [] # uidplus
2021-08-09 05:42:41 +00:00
rfc6154 = [] # list
2021-08-23 06:52:20 +00:00
fuzzing = ["arbitrary", "panorama-proto-common/fuzzing"]
2021-08-06 02:26:39 +00:00
[dependencies]
2021-10-28 22:30:25 +00:00
anyhow = { version = "1.0.44", features = ["backtrace"] }
2021-08-08 05:54:01 +00:00
async-trait = "0.1.51"
2021-10-28 22:30:25 +00:00
bitflags = "1.3.2"
bytes = "1.1.0"
chrono = "0.4.19"
derivative = "2.2.0"
2021-08-06 02:26:39 +00:00
derive_builder = "0.10.2"
2021-08-09 11:29:48 +00:00
format-bytes = "0.2.2"
2021-10-28 22:30:25 +00:00
futures = "0.3.17"
2021-08-06 02:26:39 +00:00
log = "0.4.14"
2021-10-28 22:30:25 +00:00
nom = "7.0.0"
2021-08-09 11:29:48 +00:00
stderrlog = { version = "0.5.1", optional = true }
2021-10-28 22:30:25 +00:00
tokio = { version = "1.12.0", features = ["full"] }
tokio-rustls = { version = "0.23.0", features = ["dangerous_configuration"] }
tokio-util = { version = "0.6.8", features = ["codec"] }
webpki-roots = "0.22.1"
2021-08-23 06:52:20 +00:00
panorama-proto-common = { path = "../proto-common" }
2021-11-02 02:31:15 +00:00
crossbeam = { version = "0.8.1", optional = true }
2021-08-23 06:52:20 +00:00
# for fuzzing
2021-10-28 22:30:25 +00:00
arbitrary = { version = "1.0.2", optional = true, features = ["derive"] }
[dev-dependencies]
maplit = "1.0.2"