mirror of
https://github.com/perstarkse/minne.git
synced 2026-04-20 16:01:22 +02:00
refactor: better separation of dependencies to crates
node stuff to html crate only
This commit is contained in:
19
api-router/Cargo.toml
Normal file
19
api-router/Cargo.toml
Normal 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" }
|
||||
Reference in New Issue
Block a user