sdleffler / qp-trie-rs

An idiomatic and fast QP-trie implementation in pure Rust.
Mozilla Public License 2.0
95 stars 24 forks source link

Add `no_std` support #28

Closed antonok-edm closed 2 years ago

antonok-edm commented 2 years ago

Radix tries could be super useful in embedded contexts, so I decided to look into what it might take to support no_std build environments in this crate. As it turns out, it almost supports no_std + alloc already - it just needed the imports to be tweaked accordingly to point to core and alloc rather than std.

sdleffler commented 2 years ago

Thank you for your work! :)

sdleffler commented 2 years ago

Published as 0.7.8.