[package]
edition = "2021"
rust-version = "1.73.0"
name = "succinctly"
version = "0.6.0"
authors = ["John Ky <newhoggy@gmail.com>"]
build = false
include = [
"src/**/*",
"benches/**/*",
"tests/**/*",
"Cargo.toml",
"LICENSE",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance succinct data structures for Rust"
homepage = "https://github.com/rust-works/succinctly"
documentation = "https://docs.rs/succinctly"
readme = "README.md"
keywords = [
"succinct",
"bitvector",
"rank",
"select",
"data-structures",
]
categories = [
"data-structures",
"algorithms",
]
license = "MIT"
repository = "https://github.com/rust-works/succinctly"
[features]
bench-runner = [
"cli",
"dep:chrono",
]
broadword-yaml = []
cli = [
"std",
"clap",
"rand",
"rand_chacha",
"anyhow",
"serde_json",
"memmap2",
"atty",
"md5",
"serde",
"ctrlc",
]
default = ["std"]
huge-tests = []
large-tests = []
mmap-tests = [
"memmap2",
"tempfile",
]
portable-popcount = []
regex = ["dep:regex"]
scalar-yaml = []
serde = ["dep:serde"]
simd = []
std = []
[lib]
name = "succinctly"
path = "src/lib.rs"
[[bin]]
name = "generate_pfsm_tables"
path = "src/bin/generate_pfsm_tables.rs"
[[bin]]
name = "succinctly"
path = "src/bin/succinctly/main.rs"
required-features = ["cli"]
[[test]]
name = "binary_tests"
path = "tests/binary_tests.rs"
[[test]]
name = "bitread_tests"
path = "tests/bitread_tests.rs"
[[test]]
name = "bp_coverage_tests"
path = "tests/bp_coverage_tests.rs"
[[test]]
name = "bp_properties"
path = "tests/bp_properties.rs"
[[test]]
name = "cli_golden_tests"
path = "tests/cli_golden_tests.rs"
[[test]]
name = "jq_cli_tests"
path = "tests/jq_cli_tests.rs"
[[test]]
name = "jq_tests"
path = "tests/jq_tests.rs"
[[test]]
name = "json_indexing_tests"
path = "tests/json_indexing_tests.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[[test]]
name = "serde_tests"
path = "tests/serde_tests.rs"
[[test]]
name = "simd_level_tests"
path = "tests/simd_level_tests.rs"
[[test]]
name = "yaml_locate_regression_test"
path = "tests/yaml_locate_regression_test.rs"
[[test]]
name = "yaml_test_suite"
path = "tests/yaml_test_suite.rs"
[[test]]
name = "yq_cli_tests"
path = "tests/yq_cli_tests.rs"
[[bench]]
name = "balanced_parens"
path = "benches/balanced_parens.rs"
harness = false
[[bench]]
name = "bp_select_micro"
path = "benches/bp_select_micro.rs"
harness = false
[[bench]]
name = "dsv_bench"
path = "benches/dsv_bench.rs"
harness = false
[[bench]]
name = "elias_fano"
path = "benches/elias_fano.rs"
harness = false
[[bench]]
name = "jq_comparison"
path = "benches/jq_comparison.rs"
harness = false
[[bench]]
name = "json_escape_micro"
path = "benches/json_escape_micro.rs"
harness = false
[[bench]]
name = "json_pipeline"
path = "benches/json_pipeline.rs"
harness = false
[[bench]]
name = "json_simd_common"
path = "benches/json_simd_common.rs"
[[bench]]
name = "json_simd_cursor"
path = "benches/json_simd_cursor.rs"
harness = false
[[bench]]
name = "json_simd_full"
path = "benches/json_simd_full.rs"
harness = false
[[bench]]
name = "json_simd_indexing"
path = "benches/json_simd_indexing.rs"
harness = false
[[bench]]
name = "neon_movemask"
path = "benches/neon_movemask.rs"
harness = false
[[bench]]
name = "pfsm_vs_scalar"
path = "benches/pfsm_vs_scalar.rs"
harness = false
[[bench]]
name = "pfsm_vs_simd"
path = "benches/pfsm_vs_simd.rs"
harness = false
[[bench]]
name = "popcount_strategies"
path = "benches/popcount_strategies.rs"
harness = false
[[bench]]
name = "rank_select"
path = "benches/rank_select.rs"
harness = false
[[bench]]
name = "yaml_anchor_micro"
path = "benches/yaml_anchor_micro.rs"
harness = false
[[bench]]
name = "yaml_bench"
path = "benches/yaml_bench.rs"
harness = false
[[bench]]
name = "yaml_transcode_micro"
path = "benches/yaml_transcode_micro.rs"
harness = false
[[bench]]
name = "yaml_type_stack_micro"
path = "benches/yaml_type_stack_micro.rs"
harness = false
[[bench]]
name = "yq_comparison"
path = "benches/yq_comparison.rs"
harness = false
[[bench]]
name = "yq_select"
path = "benches/yq_select.rs"
harness = false
[dependencies.anyhow]
version = "1.0"
optional = true
[dependencies.atty]
version = "0.2"
optional = true
[dependencies.bytemuck]
version = "1.14"
features = ["derive"]
[dependencies.chrono]
version = "0.4"
optional = true
[dependencies.clap]
version = "4.5"
features = ["derive"]
optional = true
[dependencies.ctrlc]
version = "3.4"
optional = true
[dependencies.indexmap]
version = "2.2"
[dependencies.libm]
version = "0.2"
[dependencies.md5]
version = "0.7"
optional = true
[dependencies.memmap2]
version = "0.9"
optional = true
[dependencies.rand]
version = "0.8"
optional = true
[dependencies.rand_chacha]
version = "0.3"
optional = true
[dependencies.regex]
version = "1.10"
optional = true
[dependencies.serde]
version = "1.0"
features = [
"alloc",
"derive",
]
optional = true
default-features = false
[dependencies.serde_json]
version = "1.0"
features = ["preserve_order"]
optional = true
[dependencies.tempfile]
version = "3.10"
optional = true
[dev-dependencies.anyhow]
version = "1.0"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.insta]
version = "1.34"
[dev-dependencies.proptest]
version = "1.0"
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.rand_chacha]
version = "0.3"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.10"