]> git.lizzy.rs Git - bit-set.git/blob - Cargo.toml
v0.5.3 release
[bit-set.git] / Cargo.toml
1 [package]
2 name = "bit-set"
3 version = "0.5.3"
4 authors = ["Alexis Beingessner <a.beingessner@gmail.com>"]
5 license = "MIT/Apache-2.0"
6 description = "A set of bits"
7 repository = "https://github.com/contain-rs/bit-set"
8 homepage = "https://github.com/contain-rs/bit-set"
9 documentation = "https://contain-rs.github.io/bit-set/bit_set"
10 keywords = ["data-structures", "bitset"]
11 readme = "README.md"
12
13 [dev-dependencies]
14 rand = "0.3"
15
16 [dependencies.bit-vec]
17 version = "0.6.1"
18 default-features = false
19
20 [features]
21 default = ["std"]
22 std = ["bit-vec/std"]