diff options
| author | Joel Klinghed <the_jk@spawned.biz> | 2025-06-05 01:50:52 +0200 |
|---|---|---|
| committer | Joel Klinghed <the_jk@spawned.biz> | 2025-06-05 01:50:52 +0200 |
| commit | 158a9f64daac699d094dc7550c81be9059aefa0a (patch) | |
| tree | 29c96bc4dd38ee0948b149f52576e7dec241e913 /server/common/Cargo.toml | |
| parent | d0d87d9f304ae3f285d0a11913ed224818ed4f40 (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.toml | 2 |
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 |
