fix: add tracing dependency to app-server crate

Required for tracing::error! in persist_config error handling.
This commit is contained in:
huqiantao
2026-06-07 19:56:06 +08:00
parent 5e761a616c
commit 5cab1517a4
2 changed files with 2 additions and 0 deletions
Generated
+1
View File
@@ -831,6 +831,7 @@ dependencies = [
"tokio",
"tower",
"tower-http",
"tracing",
"uuid",
]
+1
View File
@@ -23,6 +23,7 @@ serde.workspace = true
serde_json.workspace = true
tokio.workspace = true
tower-http.workspace = true
tracing.workspace = true
uuid.workspace = true
[dev-dependencies]