[package]
edition = "2024"
rust-version = "1.97.0"
name = "kevy-window"
version = "6.4.0"
authors = ["GOLIA K.K."]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Sliding-window runtime for scalar and text indexes: boundary maintenance, the eviction slide into cold segments, and the cold halves of range/count and MATCH."
homepage = "https://github.com/goliajp/kevy"
documentation = "https://docs.rs/kevy-window"
readme = "README.md"
keywords = [
"sliding-window",
"index",
"eviction",
"cold-tier",
"spill",
]
categories = [
"database-implementations",
"data-structures",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/goliajp/kevy"
[lib]
name = "kevy_window"
path = "src/lib.rs"
[dependencies.kevy-index]
version = "6.4.0"
[dependencies.kevy-seg]
version = "6.4.0"
[dependencies.kevy-text]
version = "6.4.0"
[dev-dependencies.kevy-tmpdir]
version = "6.4.0"
[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"
undocumented_unsafe_blocks = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.rust]
unsafe_op_in_unsafe_fn = "deny"
warnings = "deny"