[package]
edition = "2024"
rust-version = "1.97.0"
name = "kevy-text"
version = "4.0.0"
authors = ["GOLIA K.K."]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Dictionary-free full-text search core: CJK bigram tokenizer, inverted segments, BM25 scoring."
homepage = "https://github.com/goliajp/kevy"
documentation = "https://docs.rs/kevy-text"
readme = "README.md"
keywords = [
"full-text-search",
"bm25",
"cjk",
"tokenizer",
"inverted-index",
]
categories = [
"text-processing",
"database-implementations",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/goliajp/kevy"
[lib]
name = "kevy_text"
path = "src/lib.rs"
[dependencies]
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
missing_errors_doc = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.rust]
warnings = "deny"