crdt-lite 0.5.0

A lightweight, column-based CRDT implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Reflection;
using NUnit.Framework;
using NUnitLite;

class Program
{
    static int Main(string[] args)
    {
        // Create a test suite
        var testSuite = new AutoRun(Assembly.GetExecutingAssembly());

        // Run the tests and return the result
        return testSuite.Execute(args);
    }
}