Expand description
This is a binary crate. You can use it as a library, but I wouldn’t recommend it. If you do, remember to disable the default features which are used to build the binary.
[dependencies]
yadf = { version = "0.15.0", default-features = false }
A collection of functions and structs to find duplicate files.
Example :
Find and display all the duplicate files at the given paths :
let counter = yadf::Yadf::builder()
.paths(paths)
.build()
.scan::<highway::HighwayHasher>();
println!("{}", counter.duplicates().display::<yadf::Fdupes>());
Re-exports
Structs
Display marker.
Display marker.
Serialization wrapper for paths.
Ordered counter structure.
Search configuration.
Builder for
Yadf
instances.