summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Korber <philippkorber@gmail.com>2018-11-23 20:37:33 +0100
committerPhilipp Korber <philippkorber@gmail.com>2018-11-23 20:37:33 +0100
commitfe6c17679460d16e68dfbfc923dc2ae4e85d50da (patch)
tree14986ab402684c54fb968c3e552bee07e027b5ee
parent92a77fa9438ebcf6eb603d0ee97694b0c5206549 (diff)
chore(template/deps) use crates deps instead of path/github deps
-rw-r--r--template/Cargo.toml15
1 files changed, 6 insertions, 9 deletions
diff --git a/template/Cargo.toml b/template/Cargo.toml
index 555e51b..c2eb0be 100644
--- a/template/Cargo.toml
+++ b/template/Cargo.toml
@@ -1,9 +1,9 @@
[package]
name = "mail-template"
-version = "0.2.0"
+version = "0.6.0"
description = "[mail] provides a way to create bind string template engines to produce mails"
authors = ["Philipp Korber <p.korber@1aim.com>"]
-keywords = ["mail-api", "template"]
+keywords = ["mail", "template", "handlebars"]
categories = []
license = "MIT OR Apache-2.0"
readme = "./README.md"
@@ -15,9 +15,9 @@ default = []
handlebars-bindings = ["handlebars"]
[dependencies]
-mail-core = { path="../core", features=["serde-impl"] }
-mail-internals = { path="../internals" }
-mail-headers = { path="../headers", features=["serde-impl"] }
+mail-core = { version="0.6.0", features=["serde-impl"] }
+mail-internals = "0.2.0"
+mail-headers = { version="0.6.0", features=["serde-impl"] }
failure = "0.1.1"
futures = "0.1.14"
@@ -29,10 +29,7 @@ maybe-owned = "0.3.2"
handlebars = { version="1.1.0", optional=true }
-[dependencies.mime]
-git="https://github.com/1aim/mime"
-branch="parser_revamp"
-version="0.4.0"
+
[dev-dependencies]