mirror of
https://github.com/perstarkse/minne.git
synced 2026-03-25 10:52:07 +01:00
Includes: - Design overhaul - New graph visualization - Statistics on dashboard - Supports audio files for ingestion - Pagination for entities and content - Improved performance - Improved support for running as a systemd-service version bump
38 lines
824 B
TOML
38 lines
824 B
TOML
[package]
|
|
name = "main"
|
|
version = "0.2.0"
|
|
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"
|
|
|