rust-imap/Cargo.toml
2019-09-03 11:51:46 -04:00

36 lines
1 KiB
TOML

[package]
name = "imap"
version = "1.0.2"
authors = ["Matt McCoy <mattnenterprise@yahoo.com>",
"Jon Gjengset <jon@thesquareplanet.com>"]
documentation = "https://docs.rs/imap/"
repository = "https://github.com/jonhoo/rust-imap"
homepage = "https://github.com/jonhoo/rust-imap"
description = "IMAP client for Rust"
readme = "README.md"
license = "Apache-2.0/MIT"
edition = "2018"
keywords = ["email", "imap"]
categories = ["email", "network-programming"]
[badges]
azure-devops = { project = "jonhoo/jonhoo", pipeline = "imap", build = "11" }
codecov = { repository = "jonhoo/rust-imap", branch = "master", service = "github" }
maintenance = { status = "actively-developed" }
is-it-maintained-issue-resolution = { repository = "jonhoo/rust-imap" }
is-it-maintained-open-issues = { repository = "jonhoo/rust-imap" }
[dependencies]
native-tls = "0.2.2"
regex = "1.0"
bufstream = "0.1"
imap-proto = "0.8"
nom = "4.0"
base64 = "0.10"
chrono = "0.4"
lazy_static = "1.4"
[dev-dependencies]
lettre = "0.9"
lettre_email = "0.9"