Aloso / lexical-sort

Sort Unicode strings lexicographically
Other
35 stars 2 forks source link

no_std support #3

Closed Aloso closed 4 years ago

Aloso commented 4 years ago

This crate currently doesn't support no_std, because its dependency any_ascii doesn't. However, it should be simple to add no_std support to any_ascii as well as lexical-sort.

casept commented 4 years ago

I need this feature in a GBA game I'm writing. I've already submitted a PR against anyascii (https://github.com/anyascii/anyascii/pull/1).

Just noticed that I may need to talk to the crate's maintainer though, as the Rust version used in CI is so ancient that it predates alloc stabilization.

Aloso commented 4 years ago

Thanks for doing this! I'll add no_std support once the PR lands on anyascii.

Aloso commented 4 years ago

@casept since no_std support in anyascii was merged recently, I added no_std support as well. I'll publish a new release now, check it out!

casept commented 4 years ago

Thank you!