fuzzyhash 0.2.1

Pure Rust fuzzy hash implementation
Documentation
extern crate fuzzyhash;

use fuzzyhash::FuzzyHash;

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