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/src/lib.rs | |
| 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/src/lib.rs')
| -rw-r--r-- | server/common/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/common/src/lib.rs b/server/common/src/lib.rs index abea52e..b844371 100644 --- a/server/common/src/lib.rs +++ b/server/common/src/lib.rs @@ -1,6 +1,7 @@ pub mod fs_utils; pub mod git; pub mod git_socket; +pub mod grit; #[cfg(test)] mod tests; |
