From 9128066f01a36803c04609f288fc04dd2c04641b Mon Sep 17 00:00:00 2001 From: dbr Date: Wed, 5 Jan 2022 14:47:41 +1100 Subject: [PATCH] Fix up glob patterns in imgui-sys Were set based on old pre-docking-branch-support paths Closes #596 --- imgui-sys/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/imgui-sys/Cargo.toml b/imgui-sys/Cargo.toml index ff5b2ac..1a7605f 100644 --- a/imgui-sys/Cargo.toml +++ b/imgui-sys/Cargo.toml @@ -10,8 +10,8 @@ license = "MIT/Apache-2.0" categories = ["gui", "external-ffi-bindings"] build = "build.rs" links = "imgui" -# exclude json, lua, and the imgui subdirs (imgui/examples, imgui/docs, etc) -exclude = ["third-party/*.json", "third-party/*.lua", "third-party/imgui/*/"] +# exclude .json, .lua from imgui dirs - they are intermediate artifacts from cimgui generator +exclude = ["third-party/imgui-*/*.json", "third-party/imgui-*/*.lua"] [dependencies] chlorine = "1.0.7"