fuzzyhash 0.2.2

Pure Rust fuzzy hash implementation
Documentation
1
2
3
4
5
6
7
8
extern crate fuzzyhash;

use fuzzyhash::FuzzyHash;

#[test]
fn compare_empty() {
    assert!(FuzzyHash::compare("", "").is_err());
}