summaryrefslogtreecommitdiff
path: root/server/common/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/common/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/common/Cargo.toml')
-rw-r--r--server/common/Cargo.toml2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/common/Cargo.toml b/server/common/Cargo.toml
index fdabffa..25d3d39 100644
--- a/server/common/Cargo.toml
+++ b/server/common/Cargo.toml
@@ -4,11 +4,13 @@ version = "0.1.0"
edition = "2021"
[dependencies]
+anyhow.workspace = true
futures.workspace = true
log.workspace = true
pathdiff = "0.2.3"
serde.workspace = true
tokio = { workspace = true, features = ["fs", "macros", "process", "rt", "sync"] }
+xml-rs = "0.8.26"
[dev-dependencies]
testdir.workspace = true