22 releases

0.9.1 Mar 12, 2026
0.8.0 Jul 16, 2024
0.6.3 Dec 4, 2020
0.6.2 May 6, 2020
0.4.0 Jul 10, 2015

#35 in Data structures

Download history 2141785/week @ 2025-11-30 2612491/week @ 2025-12-07 2608301/week @ 2025-12-14 1387946/week @ 2025-12-21 1307120/week @ 2025-12-28 2703546/week @ 2026-01-04 3124733/week @ 2026-01-11 3338510/week @ 2026-01-18 3453473/week @ 2026-01-25 3660855/week @ 2026-02-01 3781466/week @ 2026-02-08 3590651/week @ 2026-02-15 3872297/week @ 2026-02-22 4856499/week @ 2026-03-01 4921968/week @ 2026-03-08 4412390/week @ 2026-03-15

18,353,407 downloads per month
Used in 15,575 crates (289 directly)

Apache-2.0 OR MIT

115KB
2K SLoC

bit-vec

A compact vector of bits.

crates.io Documentation Rust CI MSRV

Dependency Status Download Status

Usage

Add this to your Cargo.toml:

[dependencies]
bit-vec = "0.9"

If you want serde support, include the feature like this:

[dependencies]
bit-vec = { version = "0.9", features = ["serde"] }

If you want to use bit-vec in a program that has #![no_std], just drop default features:

[dependencies]
bit-vec = { version = "0.9", default-features = false }

If you want to use serde with the alloc crate instead of std, just use the serde_no_std feature:

[dependencies]
bit-vec = { version = "0.9", default-features = false, features = ["serde", "serde_no_std"] }

If you want borsh-rs support, include it like this:

[dependencies]
bit-vec = { version = "0.9", features = ["borsh"] }

Other available serialization libraries can be enabled with the miniserde and nanoserde features.

Description

Dynamic collections implemented with compact bit vectors.

Examples

This is a simple example of the Sieve of Eratosthenes which calculates prime numbers up to a given limit.

use bit_vec::BitVec;

let max_prime = 10000;

// Store the primes as a BitVec
let primes = {
    // Assume all numbers are prime to begin, and then we
    // cross off non-primes progressively
    let mut bv = BitVec::from_elem(max_prime, true);

    // Neither 0 nor 1 are prime
    bv.set(0, false);
    bv.set(1, false);

    for i in 2.. 1 + (max_prime as f64).sqrt() as usize {
        // if i is a prime
        if bv[i] {
            // Mark all multiples of i as non-prime (any multiples below i * i
            // will have been marked as non-prime previously)
            for j in i.. {
                if i * j >= max_prime {
                    break;
                }
                bv.set(i * j, false)
            }
        }
    }
    bv
};

// Simple primality tests below our max bound
let print_primes = 20;
print!("The primes below {} are: ", print_primes);
for x in 0..print_primes {
    if primes.get(x).unwrap_or(false) {
        print!("{} ", x);
    }
}
println!();

let num_primes = primes.iter().filter(|x| *x).count();
println!("There are {} primes below {}", num_primes, max_prime);
assert_eq!(num_primes, 1_229);

License

Dual-licensed for compatibility with the Rust project.

Licensed under the Apache License Version 2.0: http://www.apache.org/licenses/LICENSE-2.0, or the MIT license: http://opensource.org/licenses/MIT, at your option.

Dependencies

~0–650KB
~14K SLoC