vectorless 0.1.1

Hierarchical, reasoning-native document intelligence engine
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.1"
authors = ["zTgx <beautifularea@gmail.com>"]
build = false
exclude = [
    "samples/",
    "docs/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Hierarchical, reasoning-native document intelligence engine"
readme = "README.md"
keywords = [
    "rag",
    "document",
    "retrieval",
    "indexing",
    "llm",
]
categories = [
    "text-processing",
    "data-structures",
    "algorithms",
]
license = "Apache-2.0"
repository = "https://github.com/vectorlessflow/vectorless"

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

[[example]]
name = "markdown_flow"
path = "examples/markdown_flow.rs"

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

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

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

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

[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false

[[bench]]
name = "indexing"
path = "benches/indexing.rs"

[[bench]]
name = "multi_doc"
path = "benches/multi_doc.rs"

[[bench]]
name = "retrieval"
path = "benches/retrieval.rs"

[dependencies.async-openai]
version = "0.34"
features = ["chat-completion"]

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

[dependencies.chrono]
version = "0.4"
features = [
    "serde",
    "clock",
]
default-features = false

[dependencies.indextree]
version = "4.8.0"
features = ["deser"]

[dependencies.lru]
version = "0.12"

[dependencies.regex]
version = "1.10"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.toml]
version = "0.8"

[dependencies.tracing]
version = "0.1"

[dependencies.uuid]
version = "1.10"
features = [
    "v4",
    "serde",
]

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.tempfile]
version = "3.10"

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

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