-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (41 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
44 lines (41 loc) · 1.02 KB
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
44
[package]
name = "linquebot_rs"
version = "0.1.0"
edition = "2024"
[workspace]
exclude = ["lm"]
[dependencies]
futures = "0.3.31"
tokio = { version = "1.49", features = ["rt-multi-thread", "macros", "signal"] }
teloxide-core = "0.13.0"
chrono = "0.4.43"
colored = "3.1.1"
rand = { version = "0.9.2", features = ["small_rng"] }
reqwest = { version = "0.13.1", features = ["json"] }
serde = "1.0.228"
log = "0.4.29"
regex = "1.12.2"
ctor = "0.6.3"
urlencoding = "2.1.3"
ammonia = "4.1.2"
quick_cache = "0.6.18"
sqlx = { version = "0.9.0-alpha.1", features = ["runtime-tokio", "sqlite", "postgres"] }
anyhow = "1.0.100"
env_logger = "0.11.8"
ron = "0.12.0"
serde_json = "1.0.149"
graphviz-rust = "0.9.6"
dotenvy = "0.15.7"
hf-hub = "0.4.3"
unicode-segmentation = "1.12.0"
tokio-util = "0.7.18"
llama-cpp-2 = { version = "0.1.132", features = [] }
lm = { path = "./lm", optional = true }
[features]
default = ["full"]
full = ["tarot", "tarot_ai", "explain", "jielong", "lm"]
tarot = []
tarot_ai = []
explain = []
jielong = []
lm = ["dep:lm"]