Cargo Features

[dependencies]
bit_mask_ring_buf = { version = "0.6.1", default-features = false, features = ["alloc", "interpolation"] }
default = alloc

The alloc feature is set by default whenever bit_mask_ring_buf is added without default-features = false somewhere in the dependency tree.

alloc default

Enables the BitMaskRB struct containing owned data on the heap.

interpolation

Enables linear interpolation methods. Requires the standard library.