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 8fe071a8..153d9072 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 4448a342..04dd87e0 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 d900e303..261c061c 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 7666e220..15438aa2 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 6e700f88..002f842d 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 0e56edf0..1645d82a 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 771e287f..2dd7ff9b 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 352eb591..6fcd1f8d 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 d6ac3d72..66b0a293 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 2070d165..85afe569 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 e6f20739..fa21bf87 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 ea64e5d3..3511d07d 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 7bf5be7f..dfa8c948 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 1a9d9465..521c50a3 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 7a3fbf96..cab4da43 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" -- 2.44.1