Updating Cargo.toml file with more data
This commit is contained in:
parent
c90ab54ab0
commit
765a939873
1 changed files with 9 additions and 3 deletions
12
Cargo.toml
12
Cargo.toml
|
|
@ -1,16 +1,22 @@
|
||||||
[package]
|
[package]
|
||||||
|
|
||||||
name = "imap"
|
name = "imap"
|
||||||
version = "0.0.5"
|
version = "0.0.6"
|
||||||
authors = ["Matt McCoy <mattnenterprise@yahoo.com>"]
|
authors = ["Matt McCoy <mattnenterprise@yahoo.com>"]
|
||||||
|
documentation = "http://mattnenterprise.github.io/rust-imap"
|
||||||
repository = "https://github.com/mattnenterprise/rust-imap"
|
repository = "https://github.com/mattnenterprise/rust-imap"
|
||||||
description = "IMAP client for Rust"
|
description = "IMAP client for Rust"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
license = "Apache-2.0/MIT"
|
license = "Apache-2.0/MIT"
|
||||||
|
keywords = ["imap"]
|
||||||
|
|
||||||
|
[lib]
|
||||||
|
name = "imap"
|
||||||
|
path = "src/lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
openssl = "*"
|
openssl = "0.7.13"
|
||||||
regex = "*"
|
regex = "0.1.71"
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "example"
|
name = "example"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue