2021-02-12 12:32:17 +00:00
|
|
|
[package]
|
2021-02-14 12:30:53 +00:00
|
|
|
name = "panorama-imap"
|
2021-02-14 12:31:14 +00:00
|
|
|
version = "0.0.1"
|
2021-02-14 12:30:53 +00:00
|
|
|
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>", "Michael Zhang <mail@mzhang.io>"]
|
2021-02-12 12:32:17 +00:00
|
|
|
description = "IMAP protocol parser and data structures"
|
|
|
|
keywords = ["imap", "email"]
|
|
|
|
categories = ["email", "network-programming", "parser-implementations"]
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[badges]
|
|
|
|
maintenance = { status = "passively-maintained" }
|
|
|
|
|
|
|
|
[dependencies]
|
2021-02-20 05:03:33 +00:00
|
|
|
anyhow = "1.0.38"
|
2021-02-23 04:01:39 +00:00
|
|
|
async-trait = "0.1.42"
|
2021-02-21 13:57:28 +00:00
|
|
|
derive_builder = "0.9.0"
|
2021-02-20 05:03:33 +00:00
|
|
|
futures = "0.3.12"
|
2021-02-22 07:37:19 +00:00
|
|
|
log = "0.4.14"
|
2021-02-22 21:33:30 +00:00
|
|
|
# nom = { version = "6.1.2", default-features = false, features = ["std"] }
|
|
|
|
# owning_ref = "0.4.1"
|
2021-02-20 05:03:33 +00:00
|
|
|
parking_lot = "0.11.1"
|
2021-02-22 21:33:30 +00:00
|
|
|
pest = "2.1.3"
|
|
|
|
pest_derive = "2.1.0"
|
2021-02-21 13:57:28 +00:00
|
|
|
tokio = { version = "1.1.1", features = ["full"] }
|
|
|
|
tokio-rustls = "0.22.0"
|
|
|
|
webpki-roots = "0.21.0"
|
2021-02-12 12:32:17 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
assert_matches = "1.3"
|