mirror of
https://github.com/perstarkse/minne.git
synced 2026-01-11 20:50:24 +01:00
45 lines
969 B
TOML
45 lines
969 B
TOML
[package]
|
|
name = "main"
|
|
version = "0.2.6"
|
|
edition = "2021"
|
|
repository = "https://github.com/perstarkse/minne"
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|
|
axum = { workspace = true }
|
|
surrealdb = { workspace = true }
|
|
futures = { workspace = true }
|
|
async-openai = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
ingestion-pipeline = { path = "../ingestion-pipeline" }
|
|
api-router = { path = "../api-router" }
|
|
html-router = { path = "../html-router" }
|
|
common = { path = "../common" }
|
|
composite-retrieval = { path = "../composite-retrieval" }
|
|
|
|
[dev-dependencies]
|
|
tower = "0.5"
|
|
uuid = { workspace = true }
|
|
|
|
[[bin]]
|
|
name = "server"
|
|
path = "src/server.rs"
|
|
|
|
[[bin]]
|
|
name = "worker"
|
|
path = "src/worker.rs"
|
|
|
|
[[bin]]
|
|
name = "main"
|
|
path = "src/main.rs"
|