-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
35 lines (30 loc) · 862 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
[package]
name = "bitsvec"
version = "0.1.1"
authors = ["Chojan Shang <[email protected]>"]
edition = "2021"
license = "MIT / Apache-2.0"
description = "A bit vector with the Rust standard library's portable SIMD API"
repository = "https://github.com/psiace/bitsvec"
documentation = "https://docs.rs/bitsvec"
keywords = ["bitvec", "bitmap", "vec", "simd", "data-structures"]
categories = ["data-structures"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
smallvec = { version = "1.8", features = ["const_generics"] }
[features]
default = ["std"]
std = []
[dev-dependencies]
criterion = "0.3"
# for normal bench
bit-vec = "0.6"
bitvec = "1.0.0"
# for simd bench
wide = "0.7.4"
bitvec_simd = "0.15.0"
bitvector_simd = "0.2.2"
[[bench]]
name = "comparison"
harness = false