dipa icon indicating copy to clipboard operation
dipa copied to clipboard

dipa makes it easy to efficiently delta encode large Rust data structures.

Results 2 dipa issues
Sort by recently updated
recently updated
newest added

The test from #4 can be made accessible with - ``` cargo test --all-features ``` This PR adds the test. It still fails, however.

Right now if a struct has a small number of fields we default to using an enum to encode the delta. Something like: ```rust // We don't use generics in...