-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (36 loc) · 886 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "indexed_bitvec"
version = "4.0.1"
edition = "2018"
description = "An indexed bitvector with (hopefully) fast rank and select operations."
repository = "https://github.com/DarkOtter/indexed-bitvec-rs"
license = "Apache-2.0"
authors = ["DarkOtter <>"]
keywords = ["index", "indexing", "bits", "bitvector"]
categories = ["algorithms", "data-structures"]
[badges]
travis-ci = { repository = "DarkOtter/indexed-bitvec-rs" }
[workspace]
members = [ "core", "examples" ]
[features]
default = []
implement_heapsize = ["heapsize"]
[dependencies.indexed_bitvec_core]
path = "core"
version = "4"
[dependencies]
serde = "1.0"
serde_derive = "1.0"
[dependencies.heapsize]
optional = true
version = "0.4"
[dev-dependencies]
bincode = "1"
criterion = "0.3"
proptest = "0.9"
quickcheck = "0.9"
rand = "0.7"
rand_xorshift = "0.2"
[[bench]]
name = "operations"
harness = false