Unicode character "confusable" detection and "skeleton" computation, specified by the Unicode Standard Annex #39. These functions are for working with strings that appear nearly identical once rendered, but do not compare as equal.
```rust extern crate unicode_skeleton;
use unicodeskeleton::{skeletonchars, confusable};
fn main() {
asserteq!(skeletonchars("ππΆα»Ώπ‘πβ").collect::
Adding the following to your Cargo.toml
to use:
toml
[dependencies]
unicode_skeleton = "0.1.0"