Fix exclude of .crate file

Glob pattern no longer matched anything, including the intermediate cimgui files unnecessarily
This commit is contained in:
dbr 2023-01-04 15:47:24 +10:30
parent d9e2e65758
commit af898e7358

View File

@ -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/",