-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
34 lines (31 loc) · 907 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
[package]
name = "emailmessage"
version = "0.2.2"
authors = ["Kayo <[email protected]>"]
description = "Email Message library for Rust"
homepage = "https://github.com/katyo/emailmessage-rs"
repository = "https://github.com/katyo/emailmessage-rs.git"
readme = "README.md"
keywords = ["email", "message", "mime", "multipart", "format"]
categories = ["email", "encoding", "data-structures", "value-formatting", "asynchronous"]
license = "MIT"
[badges]
travis-ci = { repository = "katyo/emailmessage-rs", branch = "master" }
appveyor = { repository = "katyo/emailmessage-rs", branch = "master" }
[dependencies]
bytes = "^0.4"
time = "^0.1"
base64 = "^0.10"
quoted_printable = "^0.4"
regex = "^1"
idna = "^0.1"
lazy_static = "^1"
hyperx = "^0.13"
hyper = "^0.12"
mime = "^0.3"
textnonce = "^0.6"
futures = "^0.1"
serde = { version = "^1", optional = true }
[dev-dependencies]
tokio = "^0.1"
serde_json = "^1"