summaryrefslogtreecommitdiffstats
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
parentc6810eb10537c4740d97d25fc04715cde09ffb13 (diff)
Let all Cargo.tomls in the workspace use the workspace in development mode
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--core/Cargo.toml4
-rw-r--r--headers/Cargo.toml2
-rw-r--r--mail/Cargo.toml10
-rw-r--r--parser/Cargo.toml6
-rw-r--r--smtp/Cargo.toml9
-rw-r--r--template/Cargo.toml6
6 files changed, 19 insertions, 18 deletions
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 375d3ac..e7bc4e4 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -20,8 +20,8 @@ test-utils = ["default", "lazy_static"]
features = [ "serde-impl", "default" ]
[dependencies]
-mail-internals = "0.2.3"
-mail-headers = "0.6.6"
+mail-internals = { version = "0.2.3", path = "../internals" }
+mail-headers = { version = "0.6.6", path = "../headers" }
failure = "0.1.2"
futures = "0.1.24"
log = "0.3.8"
diff --git a/headers/Cargo.toml b/headers/Cargo.toml
index 0c50bdb..d5a51c7 100644
--- a/headers/Cargo.toml
+++ b/headers/Cargo.toml
@@ -17,7 +17,7 @@ traceing = [ "mail-internals/traceing" ]
features = [ "serde-impl" ]
[dependencies]
-mail-internals = "0.2.3"
+mail-internals = { version = "0.2.3", path = "../internals" }
failure = "0.1"
owning_ref = "0.4"
nom = "3.1.0"
diff --git a/mail/Cargo.toml b/mail/Cargo.toml
index 1645781..be891a4 100644
--- a/mail/Cargo.toml
+++ b/mail/Cargo.toml
@@ -35,11 +35,11 @@ required-features = ["smtp"]
features = [ "handlebars", "smtp", "serde-impl" ]
[dependencies]
-mail-internals = "0.2.3"
-mail-headers = "0.6.6"
-mail-core = "0.6.2"
-mail-template = "0.6.1"
-mail-smtp = { version="0.2.2", optional=true }
+mail-internals = { version = "0.2.3", path = "../internals" }
+mail-headers = { version = "0.6.6", path = "../headers" }
+mail-core = { version = "0.6.2", path = "../core" }
+mail-template = { version = "0.6.1", path = "../template" }
+mail-smtp = { version = "0.2.2", path = "../smtp", optional = true }
[dev-dependencies]
rpassword = "2.0.0"
diff --git a/parser/Cargo.toml b/parser/Cargo.toml
index b2366c6..06ad497 100644
--- a/parser/Cargo.toml
+++ b/parser/Cargo.toml
@@ -15,9 +15,9 @@ autoexamples = true
[dependencies]
-mail-core = { version = "0.6.2", features = ["serde-impl"] }
-mail-headers = { version = "0.6.6", features = ["serde-impl"] }
-mail-internals = "0.2.3"
+mail-core = { version = "0.6.2", features = ["serde-impl"], path = "../core" }
+mail-headers = { version = "0.6.6", features = ["serde-impl"], path = "../headers" }
+mail-internals = { version = "0.2.3", path = "../internals" }
failure = "0.1"
vec1 = { version = "1.3.0", features = ["serde"]}
diff --git a/smtp/Cargo.toml b/smtp/Cargo.toml
index 15ecf36..557e759 100644
--- a/smtp/Cargo.toml
+++ b/smtp/Cargo.toml
@@ -11,11 +11,12 @@ readme = "./README.md"
repository = "https://github.com/1aim/mail-smtp"
[dependencies]
+mail-core = { version = "0.6.2", path = "../core" }
+mail-headers = { version = "0.6.6", path = "../headers" }
+mail-internals = { version = "0.2.3", path = "../internals" }
+
futures = "0.1"
failure = "0.1.5"
-mail-core = "0.6.2"
-mail-headers = "0.6.6"
-mail-internals = "0.2.3"
new-tokio-smtp = "0.8.1"
[features]
@@ -24,4 +25,4 @@ extended-api = []
[dev-dependencies]
-mail-core = { version="0.6.0", features=["test-utils"] } \ No newline at end of file
+mail-core = { version="0.6.0", features=["test-utils"] }
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"