forked from mattnenterprise/rust-imap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (29 loc) · 951 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "imap"
version = "0.8.1"
authors = ["Matt McCoy <[email protected]>",
"Jon Gjengset <[email protected]>"]
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 = ["email", "imap"]
categories = ["email", "network-programming"]
[badges]
travis-ci = { repository = "mattnenterprise/rust-imap" }
appveyor = { repository = "mattnenterprise/rust-imap", branch = "master", service = "github" }
coveralls = { repository = "mattnenterprise/rust-imap", branch = "master", service = "github" }
maintenance = { status = "passively-maintained" }
[lib]
name = "imap"
path = "src/lib.rs"
[dependencies]
native-tls = "0.2"
regex = "1.0"
bufstream = "0.1"
imap-proto = "0.6"
nom = "4.0"
[dev-dependencies]
base64 = "0.10"