embedcache 0.1.0

High-performance text embedding service with caching capabilities
Documentation
[package]
name = "embedcache"
version = "0.1.0"
edition = "2021"
description = "High-performance text embedding service with caching capabilities"
license = "GPL-3.0"
repository = "https://github.com/sokratis-xyz/embedcache"
keywords = ["embedding", "cache", "nlp", "vector", "search"]
categories = ["web-programming::http-server", "science"]
documentation = "https://docs.rs/embedcache"
homepage = "https://github.com/sokratis-xyz/embedcache"
authors = ["Dipankar Sarkar <me@dipankar.name>"]
readme = "README.md"

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

[[bin]]
name = "embedcache"
path = "src/main.rs"

[dependencies]
actix-web = "4.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10.6"
fastembed = "5.1.0"
readability = "0.2.0"
anyhow = "1.0"
async-trait = "0.1.80"
async-sqlite = "0.2.2"
tokio = { version = "1.38.0", features = ["full"] }
apistos = { version="0.2", features = ["extras", "qs_query", "rapidoc", "redoc", "scalar", "swagger-ui"] }
schemars = { package = "apistos-schemars", version = "0.8", features = ["chrono", "uuid1", "url", "rust_decimal"] }
dotenv = "0.15"
usearch = "2.19.6"

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

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

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