From ba49cc94aa42ce61a69b5647a69631f478fb554c Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Fri, 14 Jun 2024 09:22:05 +0200 Subject: [PATCH] Fix `authors` field in `Cargo.toml` The field is an array, so we should use it like that... :D --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9e92678..8876735 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" name = "cargo-manifest" version = "0.14.0" -authors = ["Kornel , Luca Palmieri "] +authors = ["Kornel ", "Luca Palmieri "] description = "Helper crate to parse and manipulate manifests - `Cargo.toml` files." keywords = ["cargo", "metadata", "toml", "serde", "manifest"] categories = ["rust-patterns", "parser-implementations"]