summaryrefslogtreecommitdiffstats
path: root/template/Cargo.toml
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:30:38 +0100
commit50f0052d7481c0678b6db627a5f445110f4d963e (patch)
tree9ed3a0753d94db8d86b209b0bc869a93b4d85d5c /template/Cargo.toml
parent71ea078d4eb5d857680a69b01f7427ea43e2f5a2 (diff)
Let all Cargo.tomls in the workspace use the workspace in development modecargo-toml-own-workspace
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'template/Cargo.toml')
-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"