Replace lexical-sort with icu

`lexical-sort` is unmaintained. The author recommends switching to the
official set of ICU crates.
This commit is contained in:
Josh Megnauth 2024-07-09 01:45:13 -04:00 committed by Jeremy Soller
parent e64bdac21c
commit d7e46938ae
4 changed files with 286 additions and 3 deletions

View file

@ -89,7 +89,7 @@ impl Ord for ProjectNode {
}
}
}
lexical_sort::natural_lexical_cmp(self.name(), other.name())
crate::localize::sorter().compare(self.name(), other.name())
}
}