This uses [GreenMail's Docker image](http://www.icegreen.com/greenmail/#deploy_docker_standalone) to spin up a real SMTP+IMAP server on Travis, and then runs a series of integration tests against it by sending e-mails using [`lettre`](https://crates.io/crates/lettre) and checking that we can receive them correctly. A start on #101.
41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
[package]
|
|
|
|
name = "imap"
|
|
version = "0.9.4"
|
|
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"
|
|
|
|
keywords = ["email", "imap"]
|
|
categories = ["email", "network-programming"]
|
|
|
|
[badges]
|
|
travis-ci = { repository = "jonhoo/rust-imap" }
|
|
appveyor = { repository = "jonhoo/rust-imap", branch = "master", service = "github" }
|
|
codecov = { repository = "jonhoo/rust-imap", branch = "master", service = "github" }
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
[lib]
|
|
name = "imap"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
native-tls = "0.2.2"
|
|
regex = "1.0"
|
|
bufstream = "0.1"
|
|
imap-proto = "0.6"
|
|
nom = "4.0"
|
|
base64 = "0.10"
|
|
|
|
[dev-dependencies]
|
|
lettre = "0.9"
|
|
lettre_email = "0.9"
|
|
|
|
[patch.crates-io]
|
|
lettre = { git = "https://github.com/lettre/lettre.git" }
|
|
lettre_email = { git = "https://github.com/lettre/lettre.git" }
|