From 6df13bddea7b4e98575356e63b3aa4fe4b50d253 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sun, 11 May 2025 15:24:51 +0100 Subject: [PATCH] Fix crate licenses libloot's C++ implementation is licensed under the GPL v3.0 or later, not v3.0 only, so carry the same into the Rust reimplementation and its dependent crates. --- Cargo.toml | 2 +- cpp/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9023661f..1845493c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "libloot" version = "0.26.1" edition = "2024" -license = "GPL-3.0" +license = "GPL-3.0-or-later" [dependencies] crc32fast = "1.4.2" diff --git a/cpp/Cargo.toml b/cpp/Cargo.toml index 827ad2ee..e2abc46f 100644 --- a/cpp/Cargo.toml +++ b/cpp/Cargo.toml @@ -2,7 +2,7 @@ name = "libloot-cpp" version = "0.26.1" edition = "2024" -license = "GPL-3.0" +license = "GPL-3.0-or-later" [dependencies] cxx = { version = "1.0", features = ["c++17"] }