-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
40 lines (36 loc) · 959 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
33
34
35
36
37
38
39
40
[package]
name = "rust-slackbot-llm"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = { version = "0.7", features = ["macros"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
reqwest = { version = "0.12", features = ["multipart", "json"] }
sqlx = { version = "0.7", features = ["sqlite", "runtime-tokio"] }
serde = { version = "1" }
serde_json = "1"
uuid = { version = "1.3", features = ["v4"] }
hmac = "0.12"
sha2 = "0.10"
bincode = "1.3"
dotenvy = "0.15"
plotters = "0.3"
plotters-bitmap = "0.3"
image = { version = "0.25", features = ["png"] }
candle = { version = "0.6", package = "candle-core" }
candle-nn = { version = "0.6" }
candle-transformers = { version = "0.6" }
hf-hub = "0.3.2"
tokenizers = "0.19"
thread-priority = "1"
regex = "1.5"
chrono = "0.4.33"
log = "0.4"
pretty_env_logger = "0.5"
[profile.dev.package."*"]
opt-level = 3
[dev-dependencies]
axum-test = "15"
http = "1"
[features]
cuda = ["candle/cuda"]