refactor: better separation of dependencies to crates

node stuff to html crate only
This commit is contained in:
Per Stark
2025-04-04 12:50:38 +02:00
parent 54a67478cf
commit 69d23abd83
160 changed files with 231 additions and 337 deletions

19
api-router/Cargo.toml Normal file
View File

@@ -0,0 +1,19 @@
[package]
name = "api-router"
version = "0.1.0"
edition = "2021"
[dependencies]
# Workspace dependencies
tokio = { workspace = true }
serde = { workspace = true }
axum = { workspace = true }
tracing = { workspace = true }
anyhow = { workspace = true }
thiserror = { workspace = true }
tempfile = "3.12.0"
futures = "0.3.31"
axum_typed_multipart = "0.12.1"
common = { path = "../common" }