vectorless 0.1.0

A lightweight document indexing engine without vectorization
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 = "2024"
name = "vectorless"
version = "0.1.0"
authors = ["zTgx <beautifularea@gmail.com>"]
build = false
exclude = [
    ".github/",
    "docs/",
    "examples/",
    "benches/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight document indexing engine without vectorization"
documentation = "https://docs.rs/vectorless"
readme = "README.md"
keywords = [
    "search",
    "index",
    "document",
    "full-text-search",
]
categories = [
    "text-processing",
    "data-structures",
    "algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ztgx/vectorless"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = ["std"]
serde = ["dep:serde"]
std = []

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

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dev-dependencies]

[profile.bench]
debug = 2
inherits = "release"

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true