summaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2019-12-26 12:27:03 +0100
committerMatthias Beyer <mail@beyermatthias.de>2019-12-26 12:27:03 +0100
commit87e017574b938f9cdd7d1cac83182ace077f9032 (patch)
tree256098653601cc1a0d802fb82b75ac7bd997dce2 /template
parentc6810eb10537c4740d97d25fc04715cde09ffb13 (diff)
Let all Cargo.tomls in the workspace use the workspace in development mode
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'template')
-rw-r--r--template/Cargo.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/template/Cargo.toml b/template/Cargo.toml
index b6a7fdf..ba6bcb6 100644
--- a/template/Cargo.toml
+++ b/template/Cargo.toml
@@ -18,9 +18,9 @@ handlebars-bindings = ["handlebars"]
features = [ "handlebars-bindings" ]
[dependencies]
-mail-core = { version="0.6.2", features=["serde-impl"] }
-mail-internals = "0.2.3"
-mail-headers = { version="0.6.6", features=["serde-impl"] }
+mail-core = { version = "0.6.2", path = "../core", features = ["serde-impl"] }
+mail-internals = { version = "0.2.3", path = "../internals" }
+mail-headers = { version = "0.6.6", path = "../headers", features = ["serde-impl"] }
failure = "0.1.1"
futures = "0.1.14"