-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (42 loc) · 1.05 KB
/
Copy pathCargo.toml
File metadata and controls
54 lines (42 loc) · 1.05 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
[workspace]
resolver = "2"
members = [
"crates/synapse-dsl",
"crates/synapse-runtime",
"crates/synapse-channels",
"crates/synapse-cli",
"crates/synapse-client",
]
exclude = ["crates/synapse-python"]
[patch.crates-io]
# Use local synapse-client during development
synapse-client = { path = "crates/synapse-client" }
[workspace.dependencies]
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Async runtime
tokio = { version = "1", features = ["full"] }
# HTTP
axum = "0.8"
reqwest = { version = "0.12", features = ["json"] }
# Storage
rusqlite = { version = "0.32", features = ["bundled"] }
qdrant-client = "1"
neo4rs = "0.8"
# LLM
rig-core = "0.11"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Time
chrono = { version = "0.4", features = ["serde"] }
# Error handling
thiserror = "2"
anyhow = "1"
# Async utilities
async-trait = "0.1"
# CLI
clap = { version = "4", features = ["derive"] }
# Python
pyo3 = { version = "0.23", features = ["extension-module"] }