-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (42 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
43 lines (42 loc) · 1.1 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
[workspace]
members = [
"server"
,"core"
,"worker"
,"proxy"
]
resolver = "2"
exclude = [
"extension"
]
[workspace.dependencies]
anyhow = "1.0.98"
async-trait = "0.1.88"
bytes = "1.10.1"
chrono = {version = "0.4.41", features = ["serde"] }
clap = { version = "4.0", features = ["derive"] }
env = "1.0.1"
env_logger = "0.11"
fallible-iterator = "0.3.0"
futures = "0.3.31"
lazy_static = "1.5.0"
log = "0.4"
ollama-rs = "=0.2.1"
pgmq = { version = "0.31.0", features = ["cli"] }
rand = "0.9.1"
regex = "1.11.1"
reqwest = { version = "0.12.16", features = ["json"] }
serde = "1.0.219"
serde_json = "1.0"
sqlparser = "0.51"
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "postgres", "uuid", "time"] }
tracing = "0.1"
tracing-log = "0.1"
tracing-subscriber = "0.3.20"
thiserror = "2.0.12"
tiktoken-rs = "0.7.0"
tokio = { version = "1.0", features = ["full"] }
url = "2.2"
utoipa = { version = "4", features = ["actix_extras", "chrono", "uuid"] }
utoipa-swagger-ui = { version = "7", features = ["actix-web"] }
uuid = { version = "1.16.0", features = ["v4", "fast-rng", "macro-diagnostics", "serde"] }