You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
breadth first search for sharing, don't cross filesystems just to be safe, order by file name.
It's also mentioned in doc/chunking.md:
We serialize the filesystem by doing a breadth first walk, ordering directory
entries lexicographically. We use a breadth first search so that hopefully
package directories can be shared.
walker
inbuilder/src/lib.rs
says:It's also mentioned in
doc/chunking.md
:but https://docs.rs/walkdir/latest/walkdir/struct.WalkDir.html traverses the directory in depth-first fashion.
Furthermore, it doesn't provide support for breadth-first search:
BurntSushi/walkdir#16
The text was updated successfully, but these errors were encountered: