fuzzywuzzy-rs icon indicating copy to clipboard operation
fuzzywuzzy-rs copied to clipboard

`#![no_std]` support

Open logannc opened this issue 3 years ago • 2 comments

The only standard library uses we currently have are HashSet, for which there are excellent replacements, and std::cmp::{min, max} which are obviously functions we can live without.

logannc avatar Feb 14 '21 00:02 logannc

Should we mark this for 1.0?

seanpianka avatar Feb 21 '21 20:02 seanpianka

I don't think it requires an API change since Vec is declared in alloc which is no_std compatible and I think the HashSet is an implementation detail for token_sort, etc.

logannc avatar Feb 22 '21 08:02 logannc