Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to the walkdir crate #48

Closed
ishitatsuyuki opened this issue Jun 17, 2017 · 2 comments
Closed

Switch to the walkdir crate #48

ishitatsuyuki opened this issue Jun 17, 2017 · 2 comments

Comments

@ishitatsuyuki
Copy link

walkdir is a recursive directory traversing crate with no redundant operations (stat etc). It's also used by the award-winning ripgrep tool.

We always wanted the speed without complexity; how about reusing existing code instead of hand rolling one?

@BurntSushi
Copy link

ripgrep uses the ignore crate for a parallel walk, which is the same thing that fd uses. For single threaded mode, the ignore crate uses walkdir internally.

instead of hand rolling one

I don't see any hand rolled traverser in this repo.

@ishitatsuyuki
Copy link
Author

Didn't notice that, thanks for correcting me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants