# 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" rust-version = "1.79.0" name = "hibit_tree" version = "0.1.0-alpha.3" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Hierarchical bitmap tree. Prefix tree without memory overhead that act as herarchical bitmap." readme = "README.md" keywords = [ "tree", "map", "compressed", "bitset", "bitmap", ] categories = ["data-structures"] license = "MIT OR Apache-2.0" repository = "https://github.com/tower120/hibit_tree" [package.metadata.docs.rs] features = ["simd"] rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "hibit_tree" path = "src/lib.rs" [[example]] name = "readme_multi_type_example" path = "examples/readme_multi_type_example.rs" [[example]] name = "readme_sparse_vec_dot" path = "examples/readme_sparse_vec_dot.rs" [[example]] name = "readme_store_example" path = "examples/readme_store_example.rs" [[example]] name = "sparse_vector" path = "examples/sparse_vector.rs" [[test]] name = "common" path = "tests/common.rs" [[test]] name = "from" path = "tests/from.rs" [[test]] name = "fuzzy" path = "tests/fuzzy.rs" [[test]] name = "sparse_tree" path = "tests/sparse_tree.rs" [[bench]] name = "get" path = "benches/get.rs" harness = false [[bench]] name = "intersection" path = "benches/intersection.rs" harness = false [[bench]] name = "iteration" path = "benches/iteration.rs" harness = false [[bench]] name = "reduce_and" path = "benches/reduce_and.rs" harness = false [[bench]] name = "reduce_or" path = "benches/reduce_or.rs" harness = false [dependencies.arrayvec] version = "0.7" [dependencies.wide] version = "0.7" optional = true [dev-dependencies.ahash] version = "0.8.11" [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.itertools] version = "0.13.0" [dev-dependencies.nohash-hasher] version = "0.2.0" [dev-dependencies.rand] version = "0.8.5" [features] default = ["simd"] may_dangle = [] simd = ["dep:wide"]