rust-lang / glob

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

Derive Debug for Paths #97

Closed gibfahn closed 4 years ago

gibfahn commented 4 years ago

Useful for debugging issues being hit with globs.

LukasKalbertodt commented 4 years ago

That's why I usually have #![deny(missing_debug_implementations)] in my crates :P

I am not really familiar with this crate, but I don't see how this can break anything. CI failure is not caused by this change.

Thanks for the PR!