From: Nutomic Date: Mon, 14 Feb 2022 15:34:54 +0000 (+0000) Subject: Upgrade to Rust 2021 edition (#2093) X-Git-Url: http://these/git/readmes/README.ja.md?a=commitdiff_plain;h=5a8c894359f0db65dac9806d175d2b2716289ebe;p=lemmy.git Upgrade to Rust 2021 edition (#2093) Co-authored-by: Dessalines --- diff --git a/Cargo.toml b/Cargo.toml index 418804da..898a8ceb 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 81bd17ad..2ea72e2c 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 36843293..74fe6ab9 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 8d6f77d3..7cefb59a 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 71cf252e..0c65ebf3 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 34c9612b..4ec408f5 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 19d929a5..0f3f6a2d 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 aada70d4..514195bb 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 336a8538..a019b93c 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 1966cbdc..daf5cf5c 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 d86d6476..75d53fe7 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 0a7b4905..fa16b309 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 5857e957..14d4e7c0 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 673de866..e9def8eb 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/"