summaryrefslogtreecommitdiff
path: root/server/common/Cargo.toml
AgeCommit message (Collapse)Author
2025-06-08common: Improve assert_eq output in testsJoel Klinghed
2025-06-07grit: Add method for generating message translation idJoel Klinghed
reimplemented from a description of the grit id calculation
2025-06-05Add grit module to commonJoel Klinghed
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.
2025-06-04Make integration actually workJoel Klinghed
Add logs Add remote keys for each user
2025-02-03code coverage: Add tests for commonJoel Klinghed
Add coverage for common as well as server. Fix fs_utils::create_dir_allow_existing to fail if entry exists but isn't a dir.
2025-02-01Use workspace instead of featuresJoel Klinghed
Having to include --feature=build-server in basically all commands that wasn't building eyeballs-githook got tiring quickly. Instead, use workspaces, with a separate project for building the githook. It means I also had to add a library common with code shared by both githook and server.