From 6c14605c5b490fe76e165b8bdb08c0d00667649e Mon Sep 17 00:00:00 2001 From: Khenziii Date: Sat, 20 Jan 2024 13:56:56 +0100 Subject: [PATCH] Cargo.toml fix Turns out, that the authors field is expecting a type of string[] instead of string. I'm surprised, that rust rover didn't catch this. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 69fbaf3..02728e7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "croissantdealer" version = "0.1.0" edition = "2021" -authors = "Khenzii" +authors = ["Khenzii"] description = "Chess bot" repository = "https://github.com/Khenziii/croissantdealer" readme = "README.md"