mirror of
https://github.com/perstarkse/minne.git
synced 2026-02-24 09:04:50 +01:00
23 lines
528 B
TOML
23 lines
528 B
TOML
[workspace]
|
|
members = [
|
|
"crates/main",
|
|
"crates/common",
|
|
"crates/api-router",
|
|
"crates/html-router",
|
|
"crates/ingestion-pipeline",
|
|
"crates/composite-retrieval"
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.dependencies]
|
|
tokio = { version = "1.40.0", features = ["full"] }
|
|
serde = { version = "1.0.210", features = ["derive"] }
|
|
axum = { version = "0.7.5", features = ["multipart", "macros"] }
|
|
serde_json = "1.0.128"
|
|
thiserror = "1.0.63"
|
|
anyhow = "1.0.94"
|
|
tracing = "0.1.40"
|
|
surrealdb = "2.0.4"
|
|
futures = "0.3.31"
|
|
async-openai = "0.24.1"
|