v0.6.0
Pre-release
Pre-release
This release has the potential to greatly improve performance. glob
will no longer traverse into directories or over files that have no hope of matching the given pattern. A simple example is that a shallow pattern like *.nim
can only match files with a .nim
extension in the current directory — so glob
should never enter a subdirectory or consider files with any other extension. This is now the case!
TL;DR when using shallow patterns in roots of huge directory structures, users should see huge performance gains.
PERFORMANCE
- optimize walk iterator (
1a57121
)