mirror of
https://github.com/perstarkse/minne.git
synced 2026-03-27 03:41:32 +01:00
17 lines
400 B
TOML
17 lines
400 B
TOML
[workspace]
|
|
members = [
|
|
"crates/main",
|
|
"crates/common",
|
|
"crates/api-router"
|
|
, "crates/html-router"]
|
|
resolver = "2"
|
|
|
|
[workspace.dependencies]
|
|
tokio = { version = "1.40.0", features = ["full"] }
|
|
serde = { version = "1.0.210", features = ["derive"] }
|
|
axum = { version = "0.7.5", features = ["multipart", "macros"] }
|
|
serde_json = "1.0.128"
|
|
thiserror = "1.0.63"
|
|
anyhow = "1.0.94"
|
|
tracing = "0.1.40"
|