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 8fe071a83..153d9072f 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 4448a3423..04dd87e05 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 d900e3030..261c061c5 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 7666e220c..15438aa2e 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 6e700f88a..002f842d1 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 0e56edf00..1645d82a4 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 771e287f8..2dd7ff9bf 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 352eb591f..6fcd1f8d0 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 d6ac3d72b..66b0a293d 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 2070d165b..85afe569e 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 e6f207391..fa21bf87b 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 ea64e5d30..3511d07d3 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 7bf5be7f7..dfa8c9482 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 1a9d9465e..521c50a34 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 7a3fbf965..cab4da439 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"