From 14b8cb2aae5bc69c30350267de6a7e6096585648 Mon Sep 17 00:00:00 2001 From: Sven Assmann Date: Tue, 28 Dec 2021 13:37:03 +0100 Subject: [PATCH] feat(LICENSE): include the license files this small change makes sure the LICENSE files are included in the crate artefact. Right now they are missing. I suspect the leading `/` is not correct. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 524487083..440d46804 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ repository = "https://github.com/retep998/winapi-rs" readme = "README.md" keywords = ["windows", "ffi", "win32", "com", "directx"] categories = ["external-ffi-bindings", "no-std", "os::windows-apis"] -include = ["/src/**/*", "/Cargo.toml", "/LICENSE-MIT", "/LICENSE-APACHE", "/build.rs", "/README.md"] +include = ["src/**/*", "Cargo.toml", "LICENSE-*", "build.rs", "README.md"] build = "build.rs" [package.metadata.docs.rs]