From 159fc62dae2fd6d265fe317501264e03a7ee0fb2 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Thu, 23 Jul 2026 22:27:53 +0100 Subject: [PATCH] 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. --- Cargo.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index e66caef3..c57553f3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"