gecko-dev/third_party/rust/bit-vec
Mike Hommey 702b706639 Bug 1716518 - Upgrade bit-vec to v0.6.3. r=emilio
Differential Revision: https://phabricator.services.mozilla.com/D117763
2021-06-15 20:39:49 +00:00
..
benches Bug 1716518 - Upgrade bit-vec to v0.6.3. r=emilio 2021-06-15 20:39:49 +00:00
src Bug 1716518 - Upgrade bit-vec to v0.6.3. r=emilio 2021-06-15 20:39:49 +00:00
.cargo-checksum.json Bug 1716518 - Upgrade bit-vec to v0.6.3. r=emilio 2021-06-15 20:39:49 +00:00
Cargo.toml Bug 1716518 - Upgrade bit-vec to v0.6.3. r=emilio 2021-06-15 20:39:49 +00:00
LICENSE-APACHE
LICENSE-MIT
README.md Bug 1716518 - Upgrade bit-vec to v0.6.3. r=emilio 2021-06-15 20:39:49 +00:00
crusader.sh

README.md

bit-vec

A vector of bits.

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 }