From 31c1eadb8810ff946bed211770f17516f41a1c5e Mon Sep 17 00:00:00 2001 From: Gavin Weifert-Yeh <33366876+gavinwy@users.noreply.github.com> Date: Mon, 1 Apr 2024 23:52:52 -0700 Subject: [PATCH] Remove deprecated SPDX License ID from Cargo.toml The SPDX license identifier "GPL-3.0" has been deprecated since SPDX license list version 3.0, from December 2017, for being unclear if "GPL 3.0 only" or "GPL 3.0 or any later version" was meant. New crates published on Crates.io will not accept deprecated license identifiers. This PR updates the SPDX short license ID from the deprecated ID "GPL-3.0" to the new and prefered "GPL-3.0-only". Only the SPDX short identifier is being changed in this PR. The actual license remains the same. Please see below links for additional information: https://doc.rust-lang.org/cargo/reference/manifest.html#the-license-and-license-file-fields https://spdx.dev/license-list-3-0-released/ https://www.gnu.org/licenses/identify-licenses-clearly.html https://spdx.org/licenses/GPL-3.0.html --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 060dc6e..badde3e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,5 +8,5 @@ authors = ["morganamilo "] edition = "2021" homepage = "http://github.com/archlinux/alpm.rs" repository = "http://github.com/archlinux/alpm.rs" -license = "GPL-3.0" +license = "GPL-3.0-only" keywords = ["archlinux", "arch", "alpm", "pacman", "bindings"]