Simhash for Rust
Simhash algorithm (developed by Moses Charikar) implemented in Rust. It generates 64-bit simhashes and can calculate similarities using the Hamming distance.
Usage
Add simhash to your Cargo.toml:
[]
= "0.3"
Features
By default, simhash uses SipHash as its internal hasher. You can switch to FNV instead:
[]
= { = "0.3", = false, = ["hasher-fnv"] }
License
MIT