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
|
[package]
name = "bitarray"
version = "0.10.0"
edition = "2018"
authors = ["Geordon Worley <vadixidav@gmail.com>"]
license = "MIT"
description = "A const generics driven bit array specialized for hamming distance"
repository = "https://github.com/rust-cv/bitarray"
documentation = "https://docs.rs/bitarray/"
keywords = ["const", "generics", "bit", "array", "hamming"]
categories = ["no-std"]
readme = "README.md"
[features]
# This does not seem to build on all Windows machines (compiler has an access violation), and only works on Nightly.
unstable-512-bit-simd = []
[dependencies]
space = { version = "0.18.0", optional = true }
serde = { version = "1.0.127", default-features = false, features = ["derive"], optional = true }
cfg-if = "1.0.0"
[dev-dependencies]
bincode = { version = "1.3.3", default-features = false }
serde_json = { version = "1.0.66", default-features = false, features = ["alloc"] }
[package.metadata.docs.rs]
all-features = true
|