A library for mesuring the distance between two strings.
Currently has the Damerau-Levenschtein algorithm, so only one function.
```rust extern crate txtdist; use txtdist::damerau_levenshtein;
let distance = dameraulevenshtein("some string", "some other string"); asserteq!(distance, 6) ```