rust-imap/Cargo.toml
Jon Gjengset 300cfc04f8 Use docs.rs for documentation (#40)
* Use docs.rs for documentation

This would also allow deleting the `gh-pages` branch (which is pretty large).
I'd also recommend adding `badges` and `categories` to make the crates.io page more useful (see [this](http://www.integer32.com/2017/01/20/categories-and-ci-badges.html)), but I'll leave that up to you.

* Remove more references to old docs
2017-09-28 17:19:54 -04:00

24 lines
499 B
TOML

[package]
name = "imap"
version = "0.4.0"
authors = ["Matt McCoy <mattnenterprise@yahoo.com>"]
documentation = "https://docs.rs/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"