txtdist

A library for mesuring the distance between two strings.

Currently has the Damerau-Levenschtein and Levenschtein algorithm, so only two functions.

```rust extern crate txtdist; use txtdist::damerau_levenshtein;

let distance = dameraulevenshtein("some string", "some other string"); asserteq!(distance, 6) ```