[package]
name = "fid-rs"
version = "0.2.0"
authors = ["Sho Nakatani <lay.sakura@gmail.com>"]
description = "High performance FID (Fully Indexable Dictionary) library"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/laysakura/fid-rs"
homepage = "https://github.com/laysakura/fid-rs"
keywords = ["fid", "succinct-bit-vector"]
categories = ["compression", "data-structures"]
edition = "2018"
[dependencies]
rayon = { version = "1.5", optional = true }
serde = { version = "1.0", optional = true, features = ["derive"] }
mem_dbg = {version = "0.1.4", optional = true}
[dev-dependencies]
criterion = "0.5"
rand = "0.8"
[features]
default = ["rayon"]
[[bench]]
name = "bench"
harness = false