mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-01-04 08:12:54 +00:00
* update CHANGELOG, use github API in cliff * reset version to 0.21.1, before release * chore: Release * remove unreleased from CHANGELOG
35 lines
950 B
TOML
35 lines
950 B
TOML
[package]
|
|
name = "tantivy-stacker"
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
homepage = "https://github.com/quickwit-oss/tantivy"
|
|
repository = "https://github.com/quickwit-oss/tantivy"
|
|
description = "term hashmap used for indexing"
|
|
|
|
[dependencies]
|
|
murmurhash32 = "0.3"
|
|
common = { version = "0.7", path = "../common/", package = "tantivy-common" }
|
|
ahash = { version = "0.8.11", default-features = false, optional = true }
|
|
rand_distr = "0.4.3"
|
|
|
|
[[bench]]
|
|
harness = false
|
|
name = "crit_bench"
|
|
path = "benches/crit_bench.rs"
|
|
|
|
[[example]]
|
|
name = "hashmap"
|
|
path = "example/hashmap.rs"
|
|
|
|
[dev-dependencies]
|
|
rand = "0.8.5"
|
|
zipf = "7.0.0"
|
|
criterion = { git = "https://github.com/PSeitz/criterion.rs/", rev = "e6f98ee"} # This fork includes stack randomization to reduce caching effects
|
|
rustc-hash = "1.1.0"
|
|
proptest = "1.2.0"
|
|
|
|
[features]
|
|
compare_hash_only = ["ahash"] # Compare hash only, not the key in the Hashmap
|
|
unstable = [] # useful for benches.
|