[package]
edition = "2024"
name = "lucisearch"
version = "0.8.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embeddable, in-process search engine — the SQLite/DuckDB of search"
documentation = "https://docs.rs/lucisearch"
readme = "README.md"
keywords = [
"search",
"elasticsearch",
"embedded",
"vector",
"bm25",
]
categories = [
"database-implementations",
"text-processing",
]
license = "MIT"
resolver = "2"
[lib]
name = "luci"
path = "src/lib.rs"
[[example]]
name = "quickstart"
path = "examples/quickstart.rs"
[[test]]
name = "analysis"
path = "tests/analysis.rs"
[[test]]
name = "bulk"
path = "tests/bulk.rs"
[[test]]
name = "crash_safety"
path = "tests/crash_safety.rs"
[[test]]
name = "cross_process_locking"
path = "tests/cross_process_locking.rs"
[[test]]
name = "deletion_persistence"
path = "tests/deletion_persistence.rs"
[[test]]
name = "error_propagation"
path = "tests/error_propagation.rs"
[[test]]
name = "exit_criteria"
path = "tests/exit_criteria.rs"
[[test]]
name = "fusion_query"
path = "tests/fusion_query.rs"
[[test]]
name = "geo_shape"
path = "tests/geo_shape.rs"
[[test]]
name = "highlight"
path = "tests/highlight.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "keyword_blocked"
path = "tests/keyword_blocked.rs"
[[test]]
name = "knn_query"
path = "tests/knn_query.rs"
[[test]]
name = "loom_hnsw"
path = "tests/loom_hnsw.rs"
[[test]]
name = "m2_integration"
path = "tests/m2_integration.rs"
[[test]]
name = "m3_integration"
path = "tests/m3_integration.rs"
[[test]]
name = "m4_integration"
path = "tests/m4_integration.rs"
[[test]]
name = "m5_integration"
path = "tests/m5_integration.rs"
[[test]]
name = "m6_integration"
path = "tests/m6_integration.rs"
[[test]]
name = "m7_integration"
path = "tests/m7_integration.rs"
[[test]]
name = "profile"
path = "tests/profile/main.rs"
[[bench]]
name = "search_bench"
path = "benches/search_bench.rs"
harness = false
[dependencies.fst]
version = "0.4"
[dependencies.geo]
version = "0.32.0"
[dependencies.geo-index]
version = "0.3.4"
[dependencies.geohash]
version = "0.13.1"
[dependencies.levenshtein_automata]
version = "0.2"
features = ["fst_automaton"]
[dependencies.libc]
version = "0.2"
[dependencies.lz4_flex]
version = "0.11"
[dependencies.parking_lot]
version = "0.12"
[dependencies.rayon]
version = "1"
[dependencies.regex]
version = "1"
[dependencies.regex-automata]
version = "0.4"
features = [
"std",
"syntax",
"dfa-build",
"dfa-search",
]
default-features = false
[dependencies.roaring]
version = "0.10"
[dependencies.rust-stemmers]
version = "1"
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.unicode-segmentation]
version = "1"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dependencies.xxhash-rust]
version = "0.8"
features = ["xxh3"]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.rand]
version = "0.8"
[target."cfg(loom)".dependencies.loom]
version = "0.7"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(loom)"]