summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Korber <philippkorber@gmail.com>2018-11-22 14:29:36 +0100
committerPhilipp Korber <philippkorber@gmail.com>2018-11-22 14:29:36 +0100
commit8d83d551fb8e682e81706ad84124e079adac59e8 (patch)
treeb5cf0252cb11c1598db0f5ecc7397a1ee2dce4b0
parent9287ce6d3e6a82b8cffb1ebb579d3a84af76e20d (diff)
chore(template) integrated template crate wrt. workspace
-rw-r--r--Cargo.toml3
-rw-r--r--template/Cargo.toml6
2 files changed, 5 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 2933eec..149ef86 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,7 +4,8 @@ members = [
"core",
"headers",
"internals",
- "smtp"
+ "smtp",
+ "template"
]
diff --git a/template/Cargo.toml b/template/Cargo.toml
index 18ef13f..555e51b 100644
--- a/template/Cargo.toml
+++ b/template/Cargo.toml
@@ -15,9 +15,9 @@ default = []
handlebars-bindings = ["handlebars"]
[dependencies]
-mail-core = { git="https://github.com/1aim/mail", features=["serde-impl"] }
-mail-internals = { git="https://github.com/1aim/mail" }
-mail-headers = { git="https://github.com/1aim/mail", features=["serde-impl"] }
+mail-core = { path="../core", features=["serde-impl"] }
+mail-internals = { path="../internals" }
+mail-headers = { path="../headers", features=["serde-impl"] }
failure = "0.1.1"
futures = "0.1.14"