[package]
name = "embedcache"
version = "0.1.1"
edition = "2021"
description = "High-performance text embedding service with caching capabilities"
license = "GPL-3.0"
repository = "https://github.com/skelfresearch/embedcache"
keywords = ["embedding", "cache", "nlp", "vector", "search"]
categories = ["web-programming::http-server", "science"]
documentation = "https://docs.skelfresearch.com/embedcache/"
homepage = "https://skelfresearch.com"
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"
reqwest = { version = "0.11", features = ["json"] }
[[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"