-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (52 loc) · 1.26 KB
/
Copy pathCargo.toml
File metadata and controls
66 lines (52 loc) · 1.26 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "slmrs"
version = "0.4.0"
edition = "2024"
[dependencies]
# Core
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1", features = ["v4"] }
chrono = { version = "0.4", features = ["serde"] }
rand = "0.9"
rand_distr = "0.5"
sha2 = "0.10"
dirs = "6"
# Storage
rusqlite = { version = "0.38", features = ["bundled"] }
# ML / Inference
ort = "=2.0.0-rc.12"
ndarray = "0.17"
tokenizers = "0.22"
lightgbm = { version = "0.2", optional = true }
# MCP
rmcp = { version = "1", features = ["server", "transport-io"] }
# Text
regex = "1"
strsim = "0.11"
vader_sentiment = "0.1"
# CLI
clap = { version = "4", features = ["derive"] }
# TUI
ratatui = "0.30"
# HTTP
reqwest = { version = "0.12", features = ["json"] }
# Web server
axum = { version = "0.8", features = ["ws"] }
tower = { version = "0.5", features = ["limit", "buffer"] }
tower-http = { version = "0.6", features = ["cors", "compression-gzip", "set-header", "limit"] }
futures = "0.3"
# Embedded assets
rust-embed = "8"
mime_guess = "2"
# System
libc = "0.2"
# Terminal detection
atty = "0.2"
[features]
default = []
ml = ["lightgbm"]