-
I'm attempting to create a minimal bindings.rs. I have a C header file that has many transitive includes, and I'd like to omit them all. I only want bindings that I have explicitly included. In 0.61.0, this code worked fine:
I upgraded to 0.64.0 and it ignored my blocklist. It started pulling in all of the transitive dependencies. I added a few lines:
but this command still pulls in all of the transitives. How do I get it to behave like 0.61.0? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Wildcard patterns |
Beta Was this translation helpful? Give feedback.
Wildcard patterns
"*"
are no longer considered valid and using them produces a warning log entry. Here is the relevant changelog entry. Could you try to use".*"
instead?