-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
76 lines (72 loc) · 2.49 KB
/
Copy pathCargo.toml
File metadata and controls
76 lines (72 loc) · 2.49 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
67
68
69
70
71
72
73
74
75
76
[package]
name = "skardi-server"
version.workspace = true
edition.workspace = true
description = "Server for serving pre-defined pipelines"
authors.workspace = true
repository.workspace = true
homepage.workspace = true
license.workspace = true
[[bin]]
name = "skardi-server"
path = "src/main.rs"
[features]
default = []
candle = ["skardi/candle"]
onnx = ["skardi/onnx"]
embedding = ["candle", "gguf", "onnx", "remote-embed"]
remote-embed = ["skardi/remote-embed"]
llm-extract = ["skardi/llm-extract"]
gguf = ["skardi/gguf"]
chunking = ["skardi/chunking"]
# RAG umbrella: chunk → embed → write loop in one feature.
rag = ["embedding", "chunking"]
# documents source connector (mirrors skardi/documents).
documents = ["skardi/documents"]
# rss source connector (mirrors skardi/rss). The typed `rss:` config block on
# `data_sources[]` parses without it; this flag is what makes a `type: rss`
# source register instead of failing with a build-capability error.
rss = ["skardi/rss"]
[dependencies]
better-auth = { workspace = true }
better-auth-diesel-sqlite = { workspace = true }
arrow = { workspace = true }
arrow-json = { workspace = true }
async-trait = "0.1"
axum = { workspace = true }
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.4", features = ["derive"] }
cookie = { workspace = true }
dirs = "5.0"
datafusion = { workspace = true }
datafusion-federation = { workspace = true }
datafusion-tracing = "52.0.0"
futures = { workspace = true }
lance = { workspace = true }
object_store = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = { workspace = true }
skardi = { path = "../skardi" }
anyhow = "1.0"
base64 = "0.22"
thiserror = "1.0"
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "net", "sync"] }
tower = { workspace = true }
tower-http = { workspace = true, features = ["fs", "trace", "cors"] }
tracing = { workspace = true }
tracing-opentelemetry = "0.28"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
opentelemetry = "0.27"
opentelemetry_sdk = { version = "0.27", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.27", features = ["grpc-tonic", "metrics"] }
opentelemetry-semantic-conventions = "0.27"
url = { workspace = true }
[dev-dependencies]
arrow = { workspace = true }
datafusion = { workspace = true }
http-body-util = "0.1"
skardi = { path = "../skardi" }
tempfile = { workspace = true }
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
tower = { workspace = true }