Files
minne/main/Cargo.toml
Per Stark 69d23abd83 refactor: better separation of dependencies to crates
node stuff to html crate only
2025-04-04 12:50:38 +02:00

36 lines
772 B
TOML

[package]
name = "main"
version = "0.1.0"
edition = "2021"
[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 = { version = "0.3.18", features = ["env-filter"] }
ingestion-pipeline = { path = "../ingestion-pipeline" }
api-router = { path = "../api-router" }
html-router = { path = "../html-router" }
common = { path = "../common" }
[[bin]]
name = "server"
path = "src/server.rs"
[[bin]]
name = "worker"
path = "src/worker.rs"
[[bin]]
name = "main"
path = "src/main.rs"