Typed structs for Loro CRDTs
rust crdt

add ci

+26
+15
.tangled/workflows/fmt.yaml
··· 1 + when: 2 + - event: [push, pull_request] 3 + branch: [main] 4 + engine: nixery 5 + dependencies: 6 + nixpkgs: 7 + - rustc 8 + - rustfmt 9 + - clippy 10 + - cargo 11 + steps: 12 + - name: rustfmt 13 + command: cargo fmt -- --check 14 + - name: clippy 15 + command: cargo clippy -- -D warnings
+11
.tangled/workflows/test.yaml
··· 1 + when: 2 + - event: [push, pull_request] 3 + branch: [main] 4 + engine: nixery 5 + dependencies: 6 + nixpkgs: 7 + - rustc 8 + - cargo 9 + steps: 10 + - name: run tests 11 + command: cargo test