Crdt 1.0.0
See the version list below for details.
dotnet add package Crdt --version 1.0.0
NuGet\Install-Package Crdt -Version 1.0.0
<PackageReference Include="Crdt" Version="1.0.0" />
<PackageVersion Include="Crdt" Version="1.0.0" />
<PackageReference Include="Crdt" />
paket add Crdt --version 1.0.0
#r "nuget: Crdt, 1.0.0"
#:package Crdt@1.0.0
#addin nuget:?package=Crdt&version=1.0.0
#tool nuget:?package=Crdt&version=1.0.0
Crdt
High-performance, NativeAOT-ready Conflict-free Replicated Data Types (CRDTs) for modern .NET.
Crdt implements the full catalogue of CRDTs — counters, registers, sets, maps, flags, graphs, and sequence/text types — in state-based, delta-state, and operation-based flavours, with compact binary and System.Text.Json source-generated serialization.
Status: pre-release (
0.9.x). APIs may change before1.0.
✨ Why Crdt
- Strong eventual consistency without coordination: replicas converge after exchanging state, deltas, or operations.
- Fast:
readonly structbuilding blocks,Span<T>/IBufferWriter<byte>serialization,BinaryPrimitives/Unsafefast paths, no LINQ on hot paths. - NativeAOT & trimming clean on .NET 8/9/10 — the library is annotated
IsAotCompatible, and the test suite itself is verified running as a NativeAOT binary. - Broad reach: targets
netstandard2.1,net8.0,net9.0,net10.0(polyfilled on older runtimes).
Supported target frameworks
| TFM | Notes |
|---|---|
net10.0, net9.0, net8.0 |
Full feature set; NativeAOT supported. |
netstandard2.1 |
Compatibility target (Unity / Mono / .NET Core 3.x) via polyfills; not itself AOT-published. |
📦 Install
dotnet add package Crdt
The optional replication/transport layer — in-memory, TCP (with optional TLS), and UDP anti-entropy gossip, in state-based, delta-state, and operation-based modes — ships as a separate package:
dotnet add package Crdt.Transport
DTLS-secured datagram gossip (built on DtlsSharp) lives in a further opt-in package:
dotnet add package Crdt.Transport.Dtls
🧩 CRDT catalogue
| Family | Types |
|---|---|
| Counters | GCounter, PNCounter |
| Registers | LWWRegister<T>, MVRegister<T> |
| Sets | GSet<T>, TwoPhaseSet<T>, LWWElementSet<T>, ORSet<T> |
| Maps | ORMap<TKey,TValue>, LWWMap<TKey,TValue> |
| Flags | EnableWinsFlag, DisableWinsFlag, GFlag |
| Graphs | TwoPTwoPGraph, AddOnlyDag |
| Sequences / Text | Rga<T>, LogootSequence<T>, LSeqSequence<T>, TreedocSequence<T>, YataSequence<T>, WootSequence<T>, Text |
🔁 Replication models
- State-based (CvRDT) — exchange and
Mergefull states. Robust to reordering and duplication. - Delta-state — propagate small deltas of the same lattice; converges with a causal delta protocol.
- Operation-based (CmRDT) — propagate operations carrying their causal context; effects are idempotent / de-duplicated.
Crdt provides the data structures, merge/delta/operation logic, and serialization. Wiring replicas to a network (gossip, anti-entropy, broadcast) is left to the application.
📚 Documentation
The full developer guide lives in docs/:
- Getting started — install, your first counter, merging replicas.
- Data types — the full catalogue with usage examples for every CRDT.
- Replication models — state-based, delta-state, and operation-based, and when to use each.
- Serialization — the binary and JSON formats, value serializers, and hostile-input limits.
- Architecture — semilattices, dots, the causal kernel (ORSWOT), and the Hybrid Logical Clock.
- Performance & NativeAOT — AOT compliance, trimming, and benchmarking notes.
- Transports — the optional
Crdt.Transportpackage: in-memory and TCP gossip replication.
🛠️ Building from source
dotnet build Crdt.slnx -c Release
dotnet test Crdt.slnx -c Release
Linting / formatting:
dotnet format Crdt.slnx --verify-no-changes
pwsh -NoProfile -File eng/check-line-length.ps1
NativeAOT test gate (publishes and runs the suite as a native binary):
dotnet publish tests/Crdt.Tests/Crdt.Tests.csproj -c Release -f net10.0 -r <rid> -p:AotTest=true
📄 License
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.1 is compatible. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Microsoft.Bcl.TimeProvider (>= 10.0.9)
- System.Runtime.CompilerServices.Unsafe (>= 6.1.2)
- System.Text.Json (>= 10.0.9)
-
net10.0
- No dependencies.
-
net8.0
- No dependencies.
-
net9.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Crdt:
| Package | Downloads |
|---|---|
|
Crdt.Transport
High-performance, NativeAOT-ready CRDT transport primitives for in-memory, TCP (optional TLS), and UDP anti-entropy gossip replication. |
GitHub repositories
This package is not used by any popular GitHub repositories.