rust-lang / glob

Support for matching file paths against Unix shell style patterns.
http://doc.rust-lang.org/glob
Apache License 2.0
447 stars 76 forks source link

Add Debug instance for MatchOptions #100

Closed ndmitchell closed 1 year ago

ndmitchell commented 3 years ago

It's pretty useful when debugging to have a Debug instance available. I have a record in my project, for which I'd like Debug, but it's slightly complicated because it embeds a MatchOptions in it. Would it be possible to derive Debug for MatchOptions?

JohnTitor commented 1 year ago

That has been added by https://github.com/rust-lang/glob/pull/91, we have to cut a new release including it.

JohnTitor commented 1 year ago

0.3.1 is now released, closing as done.