summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2019-12-23 11:58:49 +0100
committerMatthias Beyer <mail@beyermatthias.de>2019-12-23 11:58:49 +0100
commit7ee95fb0863c0064927f79cbc05a42964bc63ec1 (patch)
treeed02b5745f83164f56e15119c5ae25f30be18141
parent3fa27f9e0795c8cb351bf99aacb9befa1d65a98e (diff)
Fix "repository" setting in Cargo.toml filesfix-metadata
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--core/Cargo.toml2
-rw-r--r--headers/Cargo.toml2
-rw-r--r--internals/Cargo.toml2
-rw-r--r--mail/Cargo.toml2
-rw-r--r--smtp/Cargo.toml4
-rw-r--r--template/Cargo.toml2
6 files changed, 7 insertions, 7 deletions
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 375d3ac..3ef1319 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -8,7 +8,7 @@ categories = []
license = "MIT OR Apache-2.0"
readme = "./README.md"
documentation = "https://docs.rs/mail-core"
-repository = "https://github.com/1aim/mail-core"
+repository = "https://github.com/dac-gmbh/mail-core"
[features]
serde-impl = ["serde", "mail-headers/serde-impl"]
diff --git a/headers/Cargo.toml b/headers/Cargo.toml
index 0c50bdb..921c019 100644
--- a/headers/Cargo.toml
+++ b/headers/Cargo.toml
@@ -7,7 +7,7 @@ documentation = "https://docs.rs/mail-headers"
keywords = []
categories = []
license = "MIT OR Apache-2.0"
-repository = "https://github.com/1aim/mail-headers"
+repository = "https://github.com/dac-gmbh/mail-headers"
[features]
serde-impl = [ "serde", "vec1/serde" ]
diff --git a/internals/Cargo.toml b/internals/Cargo.toml
index cbf2cf5..b9c3b56 100644
--- a/internals/Cargo.toml
+++ b/internals/Cargo.toml
@@ -6,7 +6,7 @@ documentation = "https://docs.rs/mail-internals"
keywords = ["mail-api"]
categories = []
license = "MIT OR Apache-2.0"
-repository = "https://github.com/1aim/mail"
+repository = "https://github.com/dac-gmbh/mail"
version = "0.2.3"
readme = "./README.md"
diff --git a/mail/Cargo.toml b/mail/Cargo.toml
index 1645781..b555110 100644
--- a/mail/Cargo.toml
+++ b/mail/Cargo.toml
@@ -7,7 +7,7 @@ keywords = ["mail", "rfc5322", "mime", "smtp", "template"]
description = "mail, facade for a number of mail related crates for creating and sending mails"
license = "MIT OR Apache-2.0"
readme = "./README.md"
-repository = "https://github.com/1aim/mail"
+repository = "https://github.com/dac-gmbh/mail"
autoexamples = true
[features]
diff --git a/smtp/Cargo.toml b/smtp/Cargo.toml
index 15ecf36..502ec4d 100644
--- a/smtp/Cargo.toml
+++ b/smtp/Cargo.toml
@@ -8,7 +8,7 @@ documentation = "https://docs.rs/mail-smtp"
keywords = ["mail-api"]
license = "MIT OR Apache-2.0"
readme = "./README.md"
-repository = "https://github.com/1aim/mail-smtp"
+repository = "https://github.com/dac-gmbh/mail-smtp"
[dependencies]
futures = "0.1"
@@ -24,4 +24,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..803d8f5 100644
--- a/template/Cargo.toml
+++ b/template/Cargo.toml
@@ -8,7 +8,7 @@ categories = []
license = "MIT OR Apache-2.0"
readme = "./README.md"
documentation = "https://docs.rs/mail-template"
-repository = "https://github.com/1aim/mail-template"
+repository = "https://github.com/dac-gmbh/mail-template"
[features]
default = []