From 5a8c894359f0db65dac9806d175d2b2716289ebe Mon Sep 17 00:00:00 2001 From: Nutomic Date: Mon, 14 Feb 2022 15:34:54 +0000 Subject: [PATCH] Upgrade to Rust 2021 edition (#2093) Co-authored-by: Dessalines --- 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_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 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 418804da3..898a8ceb2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lemmy_server" version = "0.15.1" -edition = "2018" +edition = "2021" description = "A link aggregator for the fediverse" license = "AGPL-3.0" homepage = "https://join-lemmy.org/" diff --git a/crates/api/Cargo.toml b/crates/api/Cargo.toml index 81bd17add..2ea72e2c9 100644 --- a/crates/api/Cargo.toml +++ b/crates/api/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lemmy_api" version = "0.15.1" -edition = "2018" +edition = "2021" description = "A link aggregator for the fediverse" license = "AGPL-3.0" homepage = "https://join-lemmy.org/" diff --git a/crates/api_common/Cargo.toml b/crates/api_common/Cargo.toml index 368432937..74fe6ab94 100644 --- a/crates/api_common/Cargo.toml +++ b/crates/api_common/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lemmy_api_common" version = "0.15.1" -edition = "2018" +edition = "2021" description = "A link aggregator for the fediverse" license = "AGPL-3.0" homepage = "https://join-lemmy.org/" diff --git a/crates/api_crud/Cargo.toml b/crates/api_crud/Cargo.toml index 8d6f77d30..7cefb59a0 100644 --- a/crates/api_crud/Cargo.toml +++ b/crates/api_crud/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lemmy_api_crud" version = "0.15.1" -edition = "2018" +edition = "2021" description = "A link aggregator for the fediverse" license = "AGPL-3.0" homepage = "https://join-lemmy.org/" diff --git a/crates/apub/Cargo.toml b/crates/apub/Cargo.toml index 71cf252e8..0c65ebf3a 100644 --- a/crates/apub/Cargo.toml +++ b/crates/apub/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lemmy_apub" version = "0.15.1" -edition = "2018" +edition = "2021" description = "A link aggregator for the fediverse" license = "AGPL-3.0" homepage = "https://join-lemmy.org/" diff --git a/crates/apub_lib/Cargo.toml b/crates/apub_lib/Cargo.toml index 34c9612bb..4ec408f5e 100644 --- a/crates/apub_lib/Cargo.toml +++ b/crates/apub_lib/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lemmy_apub_lib" version = "0.15.1" -edition = "2018" +edition = "2021" description = "A link aggregator for the fediverse" license = "AGPL-3.0" homepage = "https://join-lemmy.org/" diff --git a/crates/apub_lib_derive/Cargo.toml b/crates/apub_lib_derive/Cargo.toml index 19d929a56..0f3f6a2d2 100644 --- a/crates/apub_lib_derive/Cargo.toml +++ b/crates/apub_lib_derive/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lemmy_apub_lib_derive" version = "0.15.1" -edition = "2018" +edition = "2021" description = "A link aggregator for the fediverse" license = "AGPL-3.0" homepage = "https://join-lemmy.org/" diff --git a/crates/db_schema/Cargo.toml b/crates/db_schema/Cargo.toml index aada70d46..514195bb8 100644 --- a/crates/db_schema/Cargo.toml +++ b/crates/db_schema/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lemmy_db_schema" version = "0.15.1" -edition = "2018" +edition = "2021" description = "A link aggregator for the fediverse" license = "AGPL-3.0" homepage = "https://join-lemmy.org/" diff --git a/crates/db_views/Cargo.toml b/crates/db_views/Cargo.toml index 336a85387..a019b93c2 100644 --- a/crates/db_views/Cargo.toml +++ b/crates/db_views/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lemmy_db_views" version = "0.15.1" -edition = "2018" +edition = "2021" description = "A link aggregator for the fediverse" license = "AGPL-3.0" homepage = "https://join-lemmy.org/" diff --git a/crates/db_views_actor/Cargo.toml b/crates/db_views_actor/Cargo.toml index 1966cbdc2..daf5cf5c2 100644 --- a/crates/db_views_actor/Cargo.toml +++ b/crates/db_views_actor/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lemmy_db_views_actor" version = "0.15.1" -edition = "2018" +edition = "2021" description = "A link aggregator for the fediverse" license = "AGPL-3.0" homepage = "https://join-lemmy.org/" diff --git a/crates/db_views_moderator/Cargo.toml b/crates/db_views_moderator/Cargo.toml index d86d64764..75d53fe7d 100644 --- a/crates/db_views_moderator/Cargo.toml +++ b/crates/db_views_moderator/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lemmy_db_views_moderator" version = "0.15.1" -edition = "2018" +edition = "2021" description = "A link aggregator for the fediverse" license = "AGPL-3.0" homepage = "https://join-lemmy.org/" diff --git a/crates/routes/Cargo.toml b/crates/routes/Cargo.toml index 0a7b49051..fa16b3095 100644 --- a/crates/routes/Cargo.toml +++ b/crates/routes/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lemmy_routes" version = "0.15.1" -edition = "2018" +edition = "2021" description = "A link aggregator for the fediverse" license = "AGPL-3.0" homepage = "https://join-lemmy.org/" diff --git a/crates/utils/Cargo.toml b/crates/utils/Cargo.toml index 5857e9578..14d4e7c08 100644 --- a/crates/utils/Cargo.toml +++ b/crates/utils/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lemmy_utils" version = "0.15.1" -edition = "2018" +edition = "2021" description = "A link aggregator for the fediverse" license = "AGPL-3.0" homepage = "https://join-lemmy.org/" diff --git a/crates/websocket/Cargo.toml b/crates/websocket/Cargo.toml index 673de8664..e9def8eb1 100644 --- a/crates/websocket/Cargo.toml +++ b/crates/websocket/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lemmy_websocket" version = "0.15.1" -edition = "2018" +edition = "2021" description = "A link aggregator for the fediverse" license = "AGPL-3.0" homepage = "https://join-lemmy.org/"