samod 0.9.0

A rust library for managing automerge documents, compatible with the js automerge-repo library
1
2
3
4
5
6
7
8
use std::sync::{Arc, Mutex};

use crate::{DocActorInner, DocHandle};

pub(crate) struct ActorHandle {
    pub(crate) inner: Arc<Mutex<DocActorInner>>,
    pub(crate) doc: DocHandle,
}