From 964a5c8ec154ca8d3b71ca74f8c1acea1e80325b Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Fri, 9 Dec 2022 10:46:20 -0500 Subject: [PATCH] Ignore unused raylib files --- Cargo.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6ad568a..80fd058 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,13 @@ repository = "https://github.com/ewpratten/raylib-ffi" license = "GPL-3.0" keywords = ["raylib", "graphics"] categories = ["external-ffi-bindings", "graphics", "multimedia", "rendering"] +exclude = [ + "third_party/raylib/examples/*", + "third_party/raylib/parser/*", + "third_party/raylib/logo/*", + "third_party/raylib/projects/*" +] [build-dependencies] bindgen = "^0.63.0" -cmake = "^0.1.49" \ No newline at end of file +cmake = "^0.1.49"