* 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
24 lines
499 B
TOML
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"
|