From e9d9bc82d898b99e9e95c8fd7e26446963d97dd8 Mon Sep 17 00:00:00 2001 From: Tmpod <35771816+Tmpod@users.noreply.github.com> Date: Tue, 19 Oct 2021 18:03:43 +0100 Subject: [PATCH] Add cargo metadata to all crates (#1853) --- Cargo.toml | 2 +- crates/api/Cargo.toml | 2 ++ crates/api_common/Cargo.toml | 2 ++ crates/api_crud/Cargo.toml | 2 ++ crates/apub/Cargo.toml | 2 ++ crates/apub_lib/Cargo.toml | 2 ++ crates/apub_lib_derive/Cargo.toml | 2 ++ crates/db_queries/Cargo.toml | 2 ++ crates/db_schema/Cargo.toml | 2 ++ crates/db_views/Cargo.toml | 2 ++ crates/db_views_actor/Cargo.toml | 2 ++ crates/db_views_moderator/Cargo.toml | 2 ++ crates/routes/Cargo.toml | 2 ++ crates/utils/Cargo.toml | 2 ++ crates/websocket/Cargo.toml | 2 ++ 15 files changed, 29 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8fe071a832f..153d9072fe6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,8 +3,8 @@ name = "lemmy_server" version = "0.13.0" edition = "2018" description = "A link aggregator for the fediverse" -homepage = "https://join-lemmy.org/" license = "AGPL-3.0" +homepage = "https://join-lemmy.org/" documentation = "https://join-lemmy.org/docs/en/index.html" [lib] diff --git a/crates/api/Cargo.toml b/crates/api/Cargo.toml index 4448a342345..04dd87e053d 100644 --- a/crates/api/Cargo.toml +++ b/crates/api/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.0" edition = "2018" description = "A link aggregator for the fediverse" license = "AGPL-3.0" +homepage = "https://join-lemmy.org/" +documentation = "https://join-lemmy.org/docs/en/index.html" [lib] name = "lemmy_api" diff --git a/crates/api_common/Cargo.toml b/crates/api_common/Cargo.toml index d900e303020..261c061c577 100644 --- a/crates/api_common/Cargo.toml +++ b/crates/api_common/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.0" edition = "2018" description = "A link aggregator for the fediverse" license = "AGPL-3.0" +homepage = "https://join-lemmy.org/" +documentation = "https://join-lemmy.org/docs/en/index.html" [lib] name = "lemmy_api_common" diff --git a/crates/api_crud/Cargo.toml b/crates/api_crud/Cargo.toml index 7666e220c31..15438aa2e60 100644 --- a/crates/api_crud/Cargo.toml +++ b/crates/api_crud/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.0" edition = "2018" description = "A link aggregator for the fediverse" license = "AGPL-3.0" +homepage = "https://join-lemmy.org/" +documentation = "https://join-lemmy.org/docs/en/index.html" [dependencies] lemmy_apub = { version = "=0.13.0", path = "../apub" } diff --git a/crates/apub/Cargo.toml b/crates/apub/Cargo.toml index 6e700f88ac4..002f842d1c8 100644 --- a/crates/apub/Cargo.toml +++ b/crates/apub/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.0" edition = "2018" description = "A link aggregator for the fediverse" license = "AGPL-3.0" +homepage = "https://join-lemmy.org/" +documentation = "https://join-lemmy.org/docs/en/index.html" [lib] name = "lemmy_apub" diff --git a/crates/apub_lib/Cargo.toml b/crates/apub_lib/Cargo.toml index 0e56edf00d0..1645d82a4fb 100644 --- a/crates/apub_lib/Cargo.toml +++ b/crates/apub_lib/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.0" edition = "2018" description = "A link aggregator for the fediverse" license = "AGPL-3.0" +homepage = "https://join-lemmy.org/" +documentation = "https://join-lemmy.org/docs/en/index.html" [dependencies] lemmy_utils = { version = "=0.13.0", path = "../utils" } diff --git a/crates/apub_lib_derive/Cargo.toml b/crates/apub_lib_derive/Cargo.toml index 771e287f85c..2dd7ff9bf8b 100644 --- a/crates/apub_lib_derive/Cargo.toml +++ b/crates/apub_lib_derive/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.0" edition = "2018" description = "A link aggregator for the fediverse" license = "AGPL-3.0" +homepage = "https://join-lemmy.org/" +documentation = "https://join-lemmy.org/docs/en/index.html" [lib] proc-macro = true diff --git a/crates/db_queries/Cargo.toml b/crates/db_queries/Cargo.toml index 352eb591f93..6fcd1f8d0ab 100644 --- a/crates/db_queries/Cargo.toml +++ b/crates/db_queries/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.0" edition = "2018" description = "A link aggregator for the fediverse" license = "AGPL-3.0" +homepage = "https://join-lemmy.org/" +documentation = "https://join-lemmy.org/docs/en/index.html" [lib] name = "lemmy_db_queries" diff --git a/crates/db_schema/Cargo.toml b/crates/db_schema/Cargo.toml index d6ac3d72b8c..66b0a293ddd 100644 --- a/crates/db_schema/Cargo.toml +++ b/crates/db_schema/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.0" edition = "2018" description = "A link aggregator for the fediverse" license = "AGPL-3.0" +homepage = "https://join-lemmy.org/" +documentation = "https://join-lemmy.org/docs/en/index.html" [lib] doctest = false diff --git a/crates/db_views/Cargo.toml b/crates/db_views/Cargo.toml index 2070d165b9b..85afe569e9f 100644 --- a/crates/db_views/Cargo.toml +++ b/crates/db_views/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.0" edition = "2018" description = "A link aggregator for the fediverse" license = "AGPL-3.0" +homepage = "https://join-lemmy.org/" +documentation = "https://join-lemmy.org/docs/en/index.html" [lib] doctest = false diff --git a/crates/db_views_actor/Cargo.toml b/crates/db_views_actor/Cargo.toml index e6f207391d7..fa21bf87b88 100644 --- a/crates/db_views_actor/Cargo.toml +++ b/crates/db_views_actor/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.0" edition = "2018" description = "A link aggregator for the fediverse" license = "AGPL-3.0" +homepage = "https://join-lemmy.org/" +documentation = "https://join-lemmy.org/docs/en/index.html" [lib] doctest = false diff --git a/crates/db_views_moderator/Cargo.toml b/crates/db_views_moderator/Cargo.toml index ea64e5d3067..3511d07d3fc 100644 --- a/crates/db_views_moderator/Cargo.toml +++ b/crates/db_views_moderator/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.0" edition = "2018" description = "A link aggregator for the fediverse" license = "AGPL-3.0" +homepage = "https://join-lemmy.org/" +documentation = "https://join-lemmy.org/docs/en/index.html" [lib] doctest = false diff --git a/crates/routes/Cargo.toml b/crates/routes/Cargo.toml index 7bf5be7f7e3..dfa8c9482e4 100644 --- a/crates/routes/Cargo.toml +++ b/crates/routes/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.0" edition = "2018" description = "A link aggregator for the fediverse" license = "AGPL-3.0" +homepage = "https://join-lemmy.org/" +documentation = "https://join-lemmy.org/docs/en/index.html" [lib] doctest = false diff --git a/crates/utils/Cargo.toml b/crates/utils/Cargo.toml index 1a9d9465eca..521c50a34c6 100644 --- a/crates/utils/Cargo.toml +++ b/crates/utils/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.0" edition = "2018" description = "A link aggregator for the fediverse" license = "AGPL-3.0" +homepage = "https://join-lemmy.org/" +documentation = "https://join-lemmy.org/docs/en/index.html" [lib] name = "lemmy_utils" diff --git a/crates/websocket/Cargo.toml b/crates/websocket/Cargo.toml index 7a3fbf96593..cab4da43923 100644 --- a/crates/websocket/Cargo.toml +++ b/crates/websocket/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.0" edition = "2018" description = "A link aggregator for the fediverse" license = "AGPL-3.0" +homepage = "https://join-lemmy.org/" +documentation = "https://join-lemmy.org/docs/en/index.html" [lib] name = "lemmy_websocket"