fuzzyhash 0.1.1

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

use fuzzyhash::compare::{strings};

#[test]
fn compare2() {
    assert_eq!(
        strings(
            "".to_string(),
            "".to_string()),
        0);
}