-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (40 loc) · 1.3 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "chat-flame-backend"
version = "0.1.0"
edition = "2021"
readme = "README.md"
authors = ["[email protected]"]
license = "MIT"
repository = "https://github.com/chriamue/chat-flame-backend"
description = "ChatFlameBackend is an innovative backend solution for chat applications, leveraging the power of the Candle AI framework with a focus on the Mistral model"
keywords = ["chat", "backend", "candle", "ai", "mistral"]
[[bin]]
name = "chat-flame-backend"
path = "src/main.rs"
[dependencies]
anyhow = "1.0"
axum = "0.7"
candle-core = "0.3.2"
candle-examples = "0.3.2"
candle-transformers = "0.3.2"
clap = { version = "4.4", features = ["derive"] }
futures = "0.3.29"
hf-hub = { version = "0.3.2", features = ["tokio"] }
log = "0.4"
rayon = "1.8.0"
pretty_env_logger = "0.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
tokenizers = { version = "0.13.4", default-features = false, features = [
"onig",
] }
tokio = { version = "1", features = ["full"] }
tokio-stream = { version = "0.1", features = ["full"] }
utoipa = { version = "4.1.0", features = ["axum_extras"] }
utoipa-swagger-ui = { version = "5", features = ["axum"] }
[dev-dependencies]
axum-test = "14.0.0"
tempfile = "3.8.1"
tokio = { version = "1.0", features = ["full", "test-util"] }
tower = "0.4.13"