From 250cc6645a0393e9e1e7ae4f6d33002835795e19 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 3c3e2c07b..63e4d5bda 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,8 +3,8 @@ name = "lemmy_server" version = "0.13.3" 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 ff234e00d..2f8859268 100644 --- a/crates/api/Cargo.toml +++ b/crates/api/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.3" 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 cfa3d842b..9ef14a846 100644 --- a/crates/api_common/Cargo.toml +++ b/crates/api_common/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.3" 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 7a1e306f6..6afc85426 100644 --- a/crates/api_crud/Cargo.toml +++ b/crates/api_crud/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.3" 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.3", path = "../apub" } diff --git a/crates/apub/Cargo.toml b/crates/apub/Cargo.toml index eccf1103a..efcf3d188 100644 --- a/crates/apub/Cargo.toml +++ b/crates/apub/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.3" 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 40f95b9fa..09809b14e 100644 --- a/crates/apub_lib/Cargo.toml +++ b/crates/apub_lib/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.3" 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.3", path = "../utils" } diff --git a/crates/apub_lib_derive/Cargo.toml b/crates/apub_lib_derive/Cargo.toml index cb3bf7691..4d6079052 100644 --- a/crates/apub_lib_derive/Cargo.toml +++ b/crates/apub_lib_derive/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.3" 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 0b01f87c1..eff971a03 100644 --- a/crates/db_queries/Cargo.toml +++ b/crates/db_queries/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.3" 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 bbac68750..673ad000e 100644 --- a/crates/db_schema/Cargo.toml +++ b/crates/db_schema/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.3" 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 e534a3c5a..69502a5fc 100644 --- a/crates/db_views/Cargo.toml +++ b/crates/db_views/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.3" 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 b128f95df..f58aa1416 100644 --- a/crates/db_views_actor/Cargo.toml +++ b/crates/db_views_actor/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.3" 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 b02d353b2..2914a7707 100644 --- a/crates/db_views_moderator/Cargo.toml +++ b/crates/db_views_moderator/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.3" 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 04afbec51..cde367388 100644 --- a/crates/routes/Cargo.toml +++ b/crates/routes/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.3" 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 beccf4c25..0510fc364 100644 --- a/crates/utils/Cargo.toml +++ b/crates/utils/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.3" 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 dcf41d1be..7a5a62e14 100644 --- a/crates/websocket/Cargo.toml +++ b/crates/websocket/Cargo.toml @@ -4,6 +4,8 @@ version = "0.13.3" 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"