forked from LlamaEdge/rag-api-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (27 loc) · 819 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
[package]
name = "rag-api-server"
version = "0.6.0"
edition = "2021"
[dependencies]
llama-core = { version = "=0.10.1" }
futures = { version = "0.3.6", default-features = false, features = ["async-await", "std"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
endpoints = { version = "=0.8.0" }
chat-prompts = { version = "=0.7.1" }
serde_yaml = "0.9"
hyper_wasi = { version = "0.15", features = ["full"] }
tokio_wasi = { version = "1", features = ["full"] }
thiserror = "1"
uuid = { version = "1.4", features = ["v4", "fast-rng", "macro-diagnostics"] }
clap = { version = "4.4.6", features = ["cargo"] }
once_cell = "1.18"
mime_guess = "2.0.4"
futures-util = "0.3"
url = "^2.5"
anyhow = "1.0.80"
multipart-2021 = "0.19.0"
[features]
default = []
full = ["https"]
https = ["llama-core/https"]