samod-core 0.12.0

the core library for the samod automerge-repo implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
use samod_test_harness::Network;

#[test]
fn basic_smoke() {
    let mut network = Network::new();
    let bob = network.create_samod("Bob");
    let alice = network.create_samod("Alice");

    network.connect(bob, alice);
    network.run_until_quiescent();
}