automerge/automerge/src/storage/convert.rs
Alex Good 771733deac
Implement storage-v2
Implement parsing the binary format using the new parser library and the
new encoding types. This is superior to the previous parsing
implementation in that invalid data should never cause panics and it
exposes and interface to construct an OpSet from a saved document much
more efficiently.

Signed-off-by: Alex Good <alex@memoryandthought.me>
2022-08-22 21:16:47 +01:00

5 lines
126 B
Rust

mod op_as_changeop;
pub(crate) use op_as_changeop::op_as_actor_id;
mod op_as_docop;
pub(crate) use op_as_docop::op_as_docop;