-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add std feature flag #131
Comments
At least the TreeMap type is backed by a BTreeMap, and things like But it does seem like it wouldn't be too difficult to only require alloc, and provide a fully no-std build too. |
Ah, one thing is our use of |
Released as croaring 2.0: |
Currently the croaring crate depends on the rust standard library even though it doesn't use any particular features that are only available in the std library (as far as I've seen).
Adding a std feature flag would allow this crate to be used in environments that are unable/unwilling to depend on the rust standard library, such as embedded environments.
The text was updated successfully, but these errors were encountered: