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.
This commit is contained in:
Oliver Hamlet
2025-05-11 16:08:51 +01:00
parent a64256f372
commit 6df13bddea
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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"
+1 -1
View File
@@ -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"] }