From af898e7358a8403785964fb22f0773af3a04ee29 Mon Sep 17 00:00:00 2001 From: dbr Date: Wed, 4 Jan 2023 15:47:24 +1030 Subject: [PATCH] Fix exclude of .crate file Glob pattern no longer matched anything, including the intermediate cimgui files unnecessarily --- 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 6923859..a4205a6 100644 --- a/imgui-sys/Cargo.toml +++ b/imgui-sys/Cargo.toml @@ -14,8 +14,8 @@ links = "imgui" # exclude json, lua, and the imgui subdirs (imgui/examples, imgui/docs, etc) # ..but we need imgui/misc/freetype/ for the freetype feature exclude = [ - "third-party/*.json", - "third-party/*.lua", + "third-party/*/*.json", + "third-party/*/*.lua", "third-party/imgui/backends/", "third-party/imgui/docs/", "third-party/imgui/examples/",