summaryrefslogtreecommitdiff
path: root/server/Cargo.toml
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@spawned.biz>2025-06-05 01:50:52 +0200
committerJoel Klinghed <the_jk@spawned.biz>2025-06-05 01:50:52 +0200
commit158a9f64daac699d094dc7550c81be9059aefa0a (patch)
tree29c96bc4dd38ee0948b149f52576e7dec241e913 /server/Cargo.toml
parentd0d87d9f304ae3f285d0a11913ed224818ed4f40 (diff)
Add grit module to common
Parses grit files. I tried using serde-xml-rs but it can't handle text mixed with elements so xml-rs and event stream it is.
Diffstat (limited to 'server/Cargo.toml')
-rw-r--r--server/Cargo.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/Cargo.toml b/server/Cargo.toml
index f8bab3c..f62a2db 100644
--- a/server/Cargo.toml
+++ b/server/Cargo.toml
@@ -10,6 +10,7 @@ default-members = [".", "api", "common", "hook"]
resolver = "2"
[workspace.dependencies]
+anyhow = "1.0"
futures = "0.3.31"
log = { version = "0.4.25", features = ["release_max_level_warn"] }
rmp-serde = "1.3"
@@ -19,7 +20,7 @@ tokio = { version = "1" }
utoipa = { version = "5" }
[dependencies]
-anyhow = "1.0"
+anyhow.workspace = true
eyeballs-api = { path = "api" }
eyeballs-common = { path = "common" }
futures.workspace = true