[package]
edition = "2021"
rust-version = "1.70"
name = "polymathy"
version = "0.2.0"
authors = ["Dipankar Sarkar <me@dipankar.name>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Turn search results into answers - a web service that fetches, chunks, and returns semantic content from search queries"
homepage = "https://github.com/skelfresearch/polymathy"
documentation = "https://docs.skelfresearch.com/polymathy"
readme = "README.md"
keywords = [
"search",
"semantic",
"vector",
"rag",
"actix",
]
categories = [
"web-programming::http-server",
"text-processing",
]
license = "GPL-3.0-only"
repository = "https://github.com/skelfresearch/polymathy"
[lib]
name = "polymathy"
path = "src/lib.rs"
[[bin]]
name = "polymathy"
path = "src/bin/polymath.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.actix-web]
version = "4.0"
[dependencies.anyhow]
version = "1.0"
[dependencies.apistos]
version = "0.2"
features = [
"extras",
"qs_query",
"rapidoc",
"redoc",
"scalar",
"swagger-ui",
]
[dependencies.dotenv]
version = "0.15"
[dependencies.env_logger]
version = "0.6.1"
[dependencies.futures]
version = "0.3"
[dependencies.log]
version = "0.4.6"
[dependencies.rayon]
version = "1.8"
[dependencies.reqwest]
version = "0.11"
features = ["json"]
[dependencies.schemars]
version = "0.8"
features = [
"chrono",
"uuid1",
"url",
"rust_decimal",
]
package = "apistos-schemars"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10.6"
[dependencies.tokio]
version = "1.38.2"
features = ["full"]
[dependencies.usearch]
version = "2.12.0"
[dependencies.uuid]
version = "1.9.0"
features = [
"v4",
"fast-rng",
"macro-diagnostics",
]