tree: dcb8a1e82feb04e5a5c5e7b07d7e4b377367b478 [path history] [tgz]
  1. benches/
  2. src/
  3. .cargo-checksum.json
  4. Cargo.toml
  5. crusader.sh
  6. LICENSE-APACHE
  7. LICENSE-MIT
  8. OWNERS
  9. README.md
third_party/rust_crates/vendor/bit-vec-0.6.3/README.md

crates.io Documentation Version
Dependency Status Build Status Download Status

Documentation is available at https://contain-rs.github.io/bit-vec/bit_vec.

Build Status crates.io

Usage

Add this to your Cargo.toml:

[dependencies]
bit-vec = "0.6"

and this to your crate root:

extern crate bit_vec;

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

[dependencies]
bit-vec = { version = "0.6", 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.6", default-features = false }