From a4a39ad08f2721383150b8d759d8e08376446d16 Mon Sep 17 00:00:00 2001 From: Elias Projahn Date: Sat, 6 Nov 2021 09:29:59 +0100 Subject: [PATCH] Use the Rust 2021 edition --- backend/Cargo.toml | 2 +- client/Cargo.toml | 2 +- database/Cargo.toml | 2 +- import/Cargo.toml | 2 +- musicus/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/backend/Cargo.toml b/backend/Cargo.toml index ad03b93..81f2c72 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "musicus_backend" version = "0.1.0" -edition = "2018" +edition = "2021" [dependencies] fragile = "1.0.0" diff --git a/client/Cargo.toml b/client/Cargo.toml index d0c7109..b6c2bc9 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "musicus_client" version = "0.1.0" -edition = "2018" +edition = "2021" [dependencies] isahc = "1.1.0" diff --git a/database/Cargo.toml b/database/Cargo.toml index b1184f4..f8d5e78 100644 --- a/database/Cargo.toml +++ b/database/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "musicus_database" version = "0.1.0" -edition = "2018" +edition = "2021" [dependencies] diesel = { version = "1.4.5", features = ["sqlite"] } diff --git a/import/Cargo.toml b/import/Cargo.toml index 6c4b318..8ea306d 100644 --- a/import/Cargo.toml +++ b/import/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "musicus_import" version = "0.1.0" -edition = "2018" +edition = "2021" [dependencies] base64 = "0.13.0" diff --git a/musicus/Cargo.toml b/musicus/Cargo.toml index f1a3bc0..ef8cc5a 100644 --- a/musicus/Cargo.toml +++ b/musicus/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "musicus" version = "0.1.0" -edition = "2018" +edition = "2021" [dependencies] anyhow = "1.0.33"