peermerge 0.0.3

Manage JSON-like documents with multiple writers, without a central authority, using a P2P protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Automerge-specific helpers

mod edit;
mod init;
mod meta;

use automerge::AutoCommit;
pub(crate) use edit::*;
pub(crate) use init::*;
pub(crate) use meta::*;

/// Automerge document type, set to [AutoCommit].
pub type AutomergeDoc = AutoCommit;