rust-imap/Cargo.toml
Jon Gjengset 8383b47f35 Use BufStream for better I/O handling (#39)
* Use bufstream for better read/write

* Read with length 0 == EOF

* Adapt read_delay test to write one chat at a time

* Add test for eof reads

* Neater interface for MockStream
2017-09-27 17:38:51 -04:00

24 lines
520 B
TOML

[package]
name = "imap"
version = "0.3.3"
authors = ["Matt McCoy <mattnenterprise@yahoo.com>"]
documentation = "http://mattnenterprise.github.io/rust-imap"
repository = "https://github.com/mattnenterprise/rust-imap"
homepage = "https://github.com/mattnenterprise/rust-imap"
description = "IMAP client for Rust"
readme = "README.md"
license = "Apache-2.0/MIT"
keywords = ["imap"]
[lib]
name = "imap"
path = "src/lib.rs"
[dependencies]
openssl = "0.9"
regex = "0.2"
bufstream = "0.1"
[dev-dependencies]
base64 = "0.2"