Only include necessary files in the Cargo package

LICENSE isn't strictly necessary to use libloot as a Cargo dependency, but the code should be distributed with its license.
This commit is contained in:
Oliver Hamlet
2026-07-23 22:27:53 +01:00
parent 97655f789d
commit 159fc62dae
+8
View File
@@ -7,6 +7,14 @@ repository.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
include = [
"/src/**/*.rs",
"/build.rs",
"/Cargo.lock",
"/Cargo.toml",
"/LICENSE",
"/README.md",
]
[dependencies]
crc32fast = "1"