vers-vecs 1.9.0

A collection of succinct data structures supported by fast implementations of rank and select queries.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "vers-vecs"
version = "1.9.0"
authors = ['Johannes "Cydhra" Hengstler']
build = false
exclude = [
    "images/*",
    ".github/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A collection of succinct data structures supported by fast implementations of rank and select queries."
documentation = "https://docs.rs/vers-vecs"
readme = "readme.md"
keywords = [
    "succinct",
    "elias-fano",
    "bitvector",
    "rank",
    "wavelet-matrix",
]
categories = [
    "data-structures",
    "algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Cydhra/vers"

[package.metadata.docs.rs]
all-features = true
rustc-args = [
    "-C",
    "target-cpu=native",
]
rustdoc-args = [
    "-C",
    "target-cpu=native",
    "--cfg",
    "docsrs",
]

[features]
bp_u16_lookup = []
docsrs = []
simd = []

[lib]
name = "vers_vecs"
path = "src/lib.rs"

[[bench]]
name = "bp"
path = "benches/bp.rs"
harness = false

[[bench]]
name = "elias_fano"
path = "benches/elias_fano.rs"
harness = false

[[bench]]
name = "elias_fano_adversarial"
path = "benches/elias_fano_adversarial.rs"
harness = false

[[bench]]
name = "elias_fano_construction"
path = "benches/elias_fano_construction.rs"
harness = false

[[bench]]
name = "elias_fano_iterator"
path = "benches/elias_fano_iterator.rs"
harness = false

[[bench]]
name = "rank"
path = "benches/rank.rs"
harness = false

[[bench]]
name = "rmq"
path = "benches/rmq.rs"
harness = false

[[bench]]
name = "select"
path = "benches/select.rs"
harness = false

[[bench]]
name = "select_adversarial"
path = "benches/select_adversarial.rs"
harness = false

[[bench]]
name = "select_iter"
path = "benches/select_iter.rs"
harness = false

[[bench]]
name = "sparse_equals"
path = "benches/sparse_equals.rs"
harness = false

[dependencies.mem_dbg]
version = "0.4.0"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dev-dependencies.criterion]
version = "0.5.1"
features = ["html_reports"]

[dev-dependencies.rand]
version = "0.8"
features = ["alloc"]

[profile.bench]
lto = true