From 9776ebef9083244539a3fd8a72314b612f14ecdd Mon Sep 17 00:00:00 2001 From: dbr Date: Wed, 30 Nov 2022 10:15:38 +1030 Subject: [PATCH] Remove authors key from Cargo.toml The field is now optional (as of Rust 1.53) and no longer used by crates.io (as per Rust RFC 3052) --- imgui-examples/Cargo.toml | 1 - imgui-glium-renderer/Cargo.toml | 1 - imgui-glow-renderer/Cargo.toml | 1 - imgui-sys/Cargo.toml | 1 - imgui-winit-support/Cargo.toml | 1 - imgui/Cargo.toml | 1 - xtask/Cargo.toml | 1 - 7 files changed, 7 deletions(-) diff --git a/imgui-examples/Cargo.toml b/imgui-examples/Cargo.toml index 72415eb..9b83f0f 100644 --- a/imgui-examples/Cargo.toml +++ b/imgui-examples/Cargo.toml @@ -2,7 +2,6 @@ name = "imgui-examples" version = "0.0.0" edition = "2018" -authors = ["The imgui-rs Developers"] description = "imgui crate examples using Glium backend" homepage = "https://github.com/imgui-rs/imgui-rs" repository = "https://github.com/imgui-rs/imgui-rs" diff --git a/imgui-glium-renderer/Cargo.toml b/imgui-glium-renderer/Cargo.toml index accc810..d1333a8 100644 --- a/imgui-glium-renderer/Cargo.toml +++ b/imgui-glium-renderer/Cargo.toml @@ -2,7 +2,6 @@ name = "imgui-glium-renderer" version = "0.9.0" edition = "2018" -authors = ["The imgui-rs Developers"] description = "Glium renderer for the imgui crate" homepage = "https://github.com/imgui-rs/imgui-rs" repository = "https://github.com/imgui-rs/imgui-rs" diff --git a/imgui-glow-renderer/Cargo.toml b/imgui-glow-renderer/Cargo.toml index 2ec7bd1..297ecad 100644 --- a/imgui-glow-renderer/Cargo.toml +++ b/imgui-glow-renderer/Cargo.toml @@ -2,7 +2,6 @@ name = "imgui-glow-renderer" version = "0.9.0" edition = "2018" -authors = ["jmaargh and the imgui-rs Developers"] description = "glow renderer for the imgui crate" homepage = "https://github.com/imgui-rs/imgui-rs" repository = "https://github.com/imgui-rs/imgui-rs" diff --git a/imgui-sys/Cargo.toml b/imgui-sys/Cargo.toml index 9dd1101..36603c6 100644 --- a/imgui-sys/Cargo.toml +++ b/imgui-sys/Cargo.toml @@ -2,7 +2,6 @@ name = "imgui-sys" version = "0.9.0" edition = "2018" -authors = ["The imgui-rs Developers"] description = "Raw FFI bindings to dear imgui" homepage = "https://github.com/imgui-rs/imgui-rs" repository = "https://github.com/imgui-rs/imgui-rs" diff --git a/imgui-winit-support/Cargo.toml b/imgui-winit-support/Cargo.toml index 7675adc..c262845 100644 --- a/imgui-winit-support/Cargo.toml +++ b/imgui-winit-support/Cargo.toml @@ -2,7 +2,6 @@ name = "imgui-winit-support" version = "0.9.0" edition = "2018" -authors = ["The imgui-rs Developers"] description = "winit support code for the imgui crate" homepage = "https://github.com/imgui-rs/imgui-rs" repository = "https://github.com/imgui-rs/imgui-rs" diff --git a/imgui/Cargo.toml b/imgui/Cargo.toml index 2a52414..bed2485 100644 --- a/imgui/Cargo.toml +++ b/imgui/Cargo.toml @@ -2,7 +2,6 @@ name = "imgui" version = "0.9.0" edition = "2018" -authors = ["The imgui-rs Developers"] description = "High-level Rust bindings to dear imgui" homepage = "https://github.com/imgui-rs/imgui-rs" repository = "https://github.com/imgui-rs/imgui-rs" diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 355e524..df9a5c7 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -2,7 +2,6 @@ [package] name = "xtask" version = "0.1.0" -authors = ["Thom Chiovoloni "] edition = "2018" publish = false