summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Korber <philippkorber@gmail.com>2018-11-23 20:32:58 +0100
committerPhilipp Korber <philippkorber@gmail.com>2018-11-23 20:32:58 +0100
commit92a77fa9438ebcf6eb603d0ee97694b0c5206549 (patch)
treef3940f6559652d35b4645a19183bcf2d003bd38b
parent0fa499a90decee98f10ba3d8126e4098dcf9dbab (diff)
chore(smtp/deps) use crates deps instead of path/github deps
-rw-r--r--smtp/Cargo.toml12
1 files changed, 6 insertions, 6 deletions
diff --git a/smtp/Cargo.toml b/smtp/Cargo.toml
index 28b18fd..74016f2 100644
--- a/smtp/Cargo.toml
+++ b/smtp/Cargo.toml
@@ -1,9 +1,9 @@
[package]
authors = ["Philipp Korber <p.korber@1aim.com>"]
name = "mail-smtp"
-version = "0.2.0-wip"
+version = "0.2.0"
categories = []
-description = "[internal/mail-api] combines mail-core with new-tokio-smtp"
+description = "[mail/smtp] combines mail-core with new-tokio-smtp"
documentation = "https://docs.rs/mail-smtp"
keywords = ["mail-api"]
license = "MIT OR Apache-2.0"
@@ -13,9 +13,9 @@ repository = "https://github.com/1aim/mail-smtp"
[dependencies]
futures = "0.1"
failure = "0.1.1"
-mail-core = { path="../core" }
-mail-headers = { path="../headers"}
-mail-internals = { path="../internals" }
+mail-core = "0.6.0"
+mail-headers = "0.6.0"
+mail-internals = "0.2.0"
new-tokio-smtp = "0.8.1"
[features]
@@ -24,4 +24,4 @@ extended-api = []
[dev-dependencies]
-mail-core = { path="../core", features=["test-utils"] } \ No newline at end of file
+mail-core = { version="0.6.0", features=["test-utils"] } \ No newline at end of file