From 1f746e09390d25dd1e15d61e6ef07029b89fff50 Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Sat, 18 Jun 2022 01:38:12 +0200 Subject: Remove the authors field from Cargo.tomls It currently contains whoever was first to write some code for the crate, even if many more people have contributed to it later. The field is "sort of" deprecated, it was made optional recently: https://rust-lang.github.io/rfcs/3052-optional-authors-field.html Due the the reasons listed there I believe removing it is better than setting it to generic fluff like "The Embassy contributors". --- examples/std/Cargo.toml | 1 - 1 file changed, 1 deletion(-) (limited to 'examples/std') diff --git a/examples/std/Cargo.toml b/examples/std/Cargo.toml index 06f0f357e..8787f3c92 100644 --- a/examples/std/Cargo.toml +++ b/examples/std/Cargo.toml @@ -1,5 +1,4 @@ [package] -authors = ["Dario Nieuwenhuis "] edition = "2021" name = "embassy-std-examples" version = "0.1.0" -- cgit