fuzzy_match

A port of the basic features of the fuzzy_match Ruby gem to Rust.

Usage

To use the default configuration (SorensenDice then Levenshtein to break ties):

```rust use fuzzymatch::fuzzymatch;

let haystack = vec![("rust", 0), ("java", 1), ("lisp", 2)]; asserteq!(Some(0), fuzzymatch("bust", haystack)); ```