dson 0.3.0

A delta-state CRDT implementation
Documentation
---
source: src/macros.rs
expression: map
---
CausalDotStore {
    store: {
        "field_x": v(
            ${(@1.1, 2): "Hello"},
        ),
        "field_y": v(
            ${(@1.1, 3): "World"},
        ),
        "field_z": v(
            {
                "field_x": v(
                    ${(@1.1, 4): "Nested"},
                ),
                "field_y": v(
                    ${(@1.1, 5): "Nested"},
                ),
            },
        ),
    },
    context: CausalContext(
        {
            @1.1: {
                2..=5,
            },
        },
    ),
}