-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
32 lines (30 loc) · 868 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "open-sauced-repo-query"
version = "0.1.0"
edition = "2021"
description = "A REST service that uses semantic search to answer user queries about public GitHub repositories."
readme = "README.md"
repository = "https://github.com/open-sauced/repo-query"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "4"
anyhow = "1"
async-trait = "0.1"
dotenv = "0.15"
qdrant-client = "1"
rayon = "1"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] }
serde = "1"
tokenizers = "0.19"
openai-api-rs = "2"
zip = "0.6"
rust-fuzzy-search = "0.1"
text-splitter = "0.11"
serde_json = "1"
actix-web-lab = "0.19"
actix-rt = "2"
tracing-actix-web = "0.7"
env_logger = "0"
tokio = { version = "1", default-features = false }
actix-cors = "0"
fastembed = "3"