From 942f64f04d5780b763934710c60b37d311e029a2 Mon Sep 17 00:00:00 2001 From: link2xt Date: Sun, 25 Dec 2022 12:23:48 +0000 Subject: [PATCH] Remove authors field from Cargo metadata See Rust RFC 3052 [1]. This field is no longer required, so there is no need to have a filler value here anymore. [1] --- Cargo.toml | 1 - deltachat-ffi/Cargo.toml | 1 - deltachat-jsonrpc/Cargo.toml | 1 - deltachat-rpc-server/Cargo.toml | 1 - deltachat_derive/Cargo.toml | 1 - 5 files changed, 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 88282eb59..d7d0302df 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "deltachat" version = "1.104.0" -authors = ["Delta Chat Developers (ML) "] edition = "2021" license = "MPL-2.0" rust-version = "1.61" diff --git a/deltachat-ffi/Cargo.toml b/deltachat-ffi/Cargo.toml index 8153d954f..e7cc70998 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -2,7 +2,6 @@ name = "deltachat_ffi" version = "1.104.0" description = "Deltachat FFI" -authors = ["Delta Chat Developers (ML) "] edition = "2018" readme = "README.md" license = "MPL-2.0" diff --git a/deltachat-jsonrpc/Cargo.toml b/deltachat-jsonrpc/Cargo.toml index e2aeddf4e..c8d77c5b9 100644 --- a/deltachat-jsonrpc/Cargo.toml +++ b/deltachat-jsonrpc/Cargo.toml @@ -2,7 +2,6 @@ name = "deltachat-jsonrpc" version = "1.104.0" description = "DeltaChat JSON-RPC API" -authors = ["Delta Chat Developers (ML) "] edition = "2021" default-run = "deltachat-jsonrpc-server" license = "MPL-2.0" diff --git a/deltachat-rpc-server/Cargo.toml b/deltachat-rpc-server/Cargo.toml index bd2ba9b34..49c568bd9 100644 --- a/deltachat-rpc-server/Cargo.toml +++ b/deltachat-rpc-server/Cargo.toml @@ -2,7 +2,6 @@ name = "deltachat-rpc-server" version = "1.104.0" description = "DeltaChat JSON-RPC server" -authors = ["Delta Chat Developers (ML) "] edition = "2021" readme = "README.md" license = "MPL-2.0" diff --git a/deltachat_derive/Cargo.toml b/deltachat_derive/Cargo.toml index 616a71515..094796cda 100644 --- a/deltachat_derive/Cargo.toml +++ b/deltachat_derive/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "deltachat_derive" version = "2.0.0" -authors = ["Delta Chat Developers (ML) "] edition = "2018" license = "MPL-2.0"