This commit is contained in:
2026-03-29 05:11:22 +03:00
parent ce69d5b4a6
commit 9e13afaeae
15 changed files with 4374 additions and 0 deletions

18
backend/Cargo.toml Normal file
View File

@@ -0,0 +1,18 @@
[package]
name = "dreport-backend"
version = "0.1.0"
edition = "2024"
[dependencies]
dreport-core = { path = "../core" }
axum = "0.8"
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tower-http = { version = "0.6", features = ["cors"] }
thiserror = "2"
anyhow = "1"
typst = "0.14"
typst-pdf = "0.14"
typst-kit = { version = "0.14", features = ["fonts"] }
chrono = "0.4"