From 5113e8c8ebe03c46f694f0f1f5f9213b3224373c Mon Sep 17 00:00:00 2001 From: Nathan Stocks Date: Thu, 30 Sep 2021 22:17:57 -0600 Subject: [PATCH] update everything to 2021 edition --- example/cafeteria/Cargo.toml | 3 +-- example/hello/Cargo.toml | 3 +-- example/kitchen/Cargo.toml | 3 +-- exercise/closures_iterators/Cargo.toml | 3 +-- exercise/docs/Cargo.toml | 3 +-- exercise/errors/Cargo.toml | 3 +-- exercise/idiomatic/Cargo.toml | 3 +-- exercise/logging/Cargo.toml | 3 +-- exercise/testing/Cargo.toml | 3 +-- exercise/threads_channels/Cargo.toml | 3 +-- exercise/traits/Cargo.toml | 3 +-- 11 files changed, 11 insertions(+), 22 deletions(-) diff --git a/example/cafeteria/Cargo.toml b/example/cafeteria/Cargo.toml index 884ffca..ad16908 100644 --- a/example/cafeteria/Cargo.toml +++ b/example/cafeteria/Cargo.toml @@ -1,8 +1,7 @@ [package] name = "cafeteria" version = "0.1.0" -authors = ["Nathan Stocks "] -edition = "2018" +edition = "2021" [dependencies] crossbeam = "0.8" diff --git a/example/hello/Cargo.toml b/example/hello/Cargo.toml index 0a92cb2..48d677a 100644 --- a/example/hello/Cargo.toml +++ b/example/hello/Cargo.toml @@ -1,8 +1,7 @@ [package] name = "hello" version = "0.1.0" -authors = ["Nathan Stocks "] -edition = "2018" +edition = "2021" [dependencies] diff --git a/example/kitchen/Cargo.toml b/example/kitchen/Cargo.toml index 4317757..548f45b 100644 --- a/example/kitchen/Cargo.toml +++ b/example/kitchen/Cargo.toml @@ -1,8 +1,7 @@ [package] name = "kitchen" version = "0.1.0" -authors = ["Nathan Stocks "] -edition = "2018" +edition = "2021" [dependencies] log = "0.4" diff --git a/exercise/closures_iterators/Cargo.toml b/exercise/closures_iterators/Cargo.toml index b5ce936..9f59448 100644 --- a/exercise/closures_iterators/Cargo.toml +++ b/exercise/closures_iterators/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "closures_iterators" version = "0.1.0" -authors = ["Nathan Stocks "] -edition = "2018" +edition = "2021" [dependencies] diff --git a/exercise/docs/Cargo.toml b/exercise/docs/Cargo.toml index 4a7deac..1e72233 100644 --- a/exercise/docs/Cargo.toml +++ b/exercise/docs/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "docs" version = "0.1.0" -authors = ["Nathan Stocks "] -edition = "2018" +edition = "2021" [dependencies] diff --git a/exercise/errors/Cargo.toml b/exercise/errors/Cargo.toml index bdb3b0b..3d6f399 100644 --- a/exercise/errors/Cargo.toml +++ b/exercise/errors/Cargo.toml @@ -1,8 +1,7 @@ [package] name = "aquarium" version = "0.1.0" -authors = ["Nathan Stocks "] -edition = "2018" +edition = "2021" [dependencies] # I thought you might want this for your library... diff --git a/exercise/idiomatic/Cargo.toml b/exercise/idiomatic/Cargo.toml index 1335d24..2654c54 100644 --- a/exercise/idiomatic/Cargo.toml +++ b/exercise/idiomatic/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "idiomatic" version = "0.1.0" -authors = ["Nathan Stocks "] -edition = "2018" +edition = "2021" [dependencies] diff --git a/exercise/logging/Cargo.toml b/exercise/logging/Cargo.toml index 277d20e..10f5f0e 100644 --- a/exercise/logging/Cargo.toml +++ b/exercise/logging/Cargo.toml @@ -1,8 +1,7 @@ [package] name = "frogger" version = "0.1.0" -authors = ["Nathan Stocks "] -edition = "2018" +edition = "2021" [dependencies] # I'm glad you came to add the `log` dependency! I got it all ready for you, just uncomment: diff --git a/exercise/testing/Cargo.toml b/exercise/testing/Cargo.toml index c385f59..2e8a30c 100644 --- a/exercise/testing/Cargo.toml +++ b/exercise/testing/Cargo.toml @@ -1,8 +1,7 @@ [package] name = "testing" version = "0.1.0" -authors = ["Nathan Stocks "] -edition = "2018" +edition = "2021" [dependencies] diff --git a/exercise/threads_channels/Cargo.toml b/exercise/threads_channels/Cargo.toml index 75f13bb..b5d98b0 100644 --- a/exercise/threads_channels/Cargo.toml +++ b/exercise/threads_channels/Cargo.toml @@ -1,8 +1,7 @@ [package] name = "threads_channels" version = "0.1.0" -authors = ["Nathan Stocks "] -edition = "2018" +edition = "2021" [dependencies] crossbeam = "0.8" diff --git a/exercise/traits/Cargo.toml b/exercise/traits/Cargo.toml index a41538b..460f45f 100644 --- a/exercise/traits/Cargo.toml +++ b/exercise/traits/Cargo.toml @@ -1,8 +1,7 @@ [package] name = "traits" version = "0.1.0" -authors = ["Nathan Stocks "] -edition = "2018" +edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html