chore: add anyhow and tokio-stream dependencies

- anyhow for error handling with backtrace support

- tokio-stream for gRPC stream handling
This commit is contained in:
GW_MC
2026-07-05 05:29:08 +00:00
parent d976c22683
commit c7cc006212

View File

@@ -31,6 +31,9 @@ thiserror.workspace = true
tracing.workspace = true tracing.workspace = true
tracing-subscriber.workspace = true tracing-subscriber.workspace = true
#
anyhow = { version = "1.0.102", features = ["backtrace"] }
# Web # Web
axum = { workspace = true, features = ["ws"] } axum = { workspace = true, features = ["ws"] }
tower.workspace = true tower.workspace = true
@@ -87,6 +90,7 @@ zip = { workspace = true }
rust-embed = { version = "8.11.0", features = [] } rust-embed = { version = "8.11.0", features = [] }
mime_guess = "2.0.5" mime_guess = "2.0.5"
axum-test = "20.0.0" axum-test = "20.0.0"
tokio-stream.workspace = true
[dev-dependencies] [dev-dependencies]
tokio-test.workspace = true tokio-test.workspace = true