forked from Imberflur/bitvec_simd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 835 Bytes
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 835 Bytes
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 = "bitvec_simd"
version = "0.20.5"
authors = ["GCCFeli <feli@gccfeli.cn>"]
edition = "2021"
rust-version = "1.56"
description = "bitvec with SIMD"
documentation = "https://docs.rs/bitvec_simd"
readme = "README.md"
homepage = "https://github.com/gccfeli/bitvec_simd"
repository = "https://github.com/gccfeli/bitvec_simd"
license = "MIT"
keywords = ["bitvector", "bitvec", "bitmap", "simd", "bit"]
categories = ["data-structures"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["std"]
use_serde = ["serde"]
std = []
[dependencies]
wide = "0.7"
serde = { version = "1.0", features = ["derive"], optional = true }
[dev-dependencies]
criterion = "0.3"
bit-vec = "0.6"
bitvec = "1.0"
serde_test = "1.0"
[[bench]]
name = "comparison"
harness = false