vob 3.0.1

Vector of Bits with Vec-like API and usize backing storage
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate rustc_version;

use rustc_version::{version, Version};

fn main() {
    // Set features depending on channel
    if version().unwrap() >= Version::parse("1.37.0").unwrap() {
        println!("cargo:rustc-cfg=reverse_bits");
    }
}