Files
minne/main/Cargo.toml
Per Stark 5baab2f2a1 chore: centralized dependencies and cargo deny
chore: cargo licensing
2025-05-20 14:03:59 +02:00

37 lines
823 B
TOML

[package]
name = "main"
version = "0.1.1"
edition = "2021"
repository = "https://github.com/perstarkse/minne"
license = "AGPL-3.0-or-later"
[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" }
[[bin]]
name = "server"
path = "src/server.rs"
[[bin]]
name = "worker"
path = "src/worker.rs"
[[bin]]
name = "main"
path = "src/main.rs"