mirror of
https://github.com/perstarkse/minne.git
synced 2026-03-17 23:14:08 +01:00
41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
[package]
|
|
name = "html-router"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
# Workspace dependencies
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true }
|
|
axum = { workspace = true }
|
|
tracing = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
async-openai = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
axum-htmx = "0.6.0"
|
|
axum_session = "0.14.4"
|
|
axum_session_auth = "0.14.1"
|
|
axum_session_surreal = "0.2.1"
|
|
axum_typed_multipart = "0.12.1"
|
|
futures = "0.3.31"
|
|
tempfile = "3.12.0"
|
|
async-stream = "0.3.6"
|
|
minijinja = { version = "2.5.0", features = ["loader", "multi_template"] }
|
|
minijinja-autoreload = "2.5.0"
|
|
minijinja-embed = { version = "2.8.0" }
|
|
minijinja-contrib = { version = "2.6.0", features = ["datetime", "timezone"] }
|
|
plotly = "0.12.1"
|
|
surrealdb = "2.0.4"
|
|
tower-http = { version = "0.6.2", features = ["fs"] }
|
|
chrono-tz = "0.10.1"
|
|
tower-serve-static = "0.1.1"
|
|
include_dir = "0.7.4"
|
|
|
|
common = { path = "../common" }
|
|
composite-retrieval = { path = "../composite-retrieval" }
|
|
json-stream-parser = { path = "../json-stream-parser" }
|
|
|
|
[build-dependencies]
|
|
minijinja-embed = { version = "2.8.0" }
|