searchez 1.0.0

A searchable-model layer for Rust: make a type searchable, keep the index in sync, and search with real relevance ranking — over a pluggable backend, with a batteries-included in-memory engine that needs no external service.
Documentation
# 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.75"
name = "searchez"
version = "1.0.0"
authors = ["SNM Maurya <snmmaurya@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A searchable-model layer for Rust: make a type searchable, keep the index in sync, and search with real relevance ranking — over a pluggable backend, with a batteries-included in-memory engine that needs no external service."
homepage = "https://github.com/srotas-space/searchez"
documentation = "https://docs.rs/searchez"
readme = "README.md"
keywords = [
    "search",
    "fulltext",
    "bm25",
    "index",
    "searchkick",
]
categories = [
    "text-processing",
    "database",
    "web-programming",
]
license = "MIT"
repository = "https://github.com/srotas-space/searchez"

[package.metadata.docs.rs]
features = ["meilisearch"]

[features]
default = []
meilisearch = ["dep:meilisearch-sdk"]

[lib]
name = "searchez"
path = "src/lib.rs"

[[test]]
name = "lifecycle"
path = "tests/lifecycle.rs"

[dependencies.async-trait]
version = "0.1.91"

[dependencies.meilisearch-sdk]
version = "0.33.0"
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt-multi-thread",
]