RoaringBitmap / roaring-rs

A better compressed bitset in Rust
https://docs.rs/roaring/
Apache License 2.0
743 stars 82 forks source link

Resolve issues with no std #279

Closed kirk-baird closed 3 months ago

kirk-baird commented 3 months ago

Should resolve #278 and resolve #273 and also satisfy the clippy lints via cfg flags.

GZTimeWalker commented 3 months ago

LGTM;

GZTimeWalker commented 3 months ago

Just add this part:

- name: Test
  uses: actions-rs/cargo@v1
  with:
    command: test
    args: --no-default-features

or

- name: Test
  uses: actions-rs/cargo@v1
  with:
    command: build
    args: --no-default-features
Kerollmops commented 3 months ago

I would say let's try with the test one, but if it doesn't pass, we can only try to build it.

kirk-baird commented 3 months ago

Thanks, I'll try this now and see how it goes.

GZTimeWalker commented 3 months ago

It seems that all the checks passed as expected.