Files
minne/Cargo.toml
Per Stark c50d1d3b9b cargo-dist
updated runner
2025-05-05 14:11:24 +02:00

35 lines
774 B
TOML

[workspace]
members = [
"main",
"common",
"api-router",
"html-router",
"ingestion-pipeline",
"composite-retrieval",
"json-stream-parser"
]
resolver = "2"
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
axum = { version = "0.8", features = ["multipart", "macros"] }
serde_json = "1.0.128"
thiserror = "1.0.63"
anyhow = "1.0.94"
tracing = "0.1.40"
surrealdb = { version = "2", features = ["kv-mem"] }
futures = "0.3.31"
async-openai = "0.24.1"
axum_session = "0.16"
axum_session_auth = "0.16"
axum_session_surreal = "0.4"
axum_typed_multipart = "0.16"
tempfile = "3.12.0"
dom_smoothie = "0.10.0"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"