diff options
Diffstat (limited to 'src/table/crdt/mod.rs')
-rw-r--r-- | src/table/crdt/mod.rs | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/table/crdt/mod.rs b/src/table/crdt/mod.rs deleted file mode 100644 index 9663a5a5..00000000 --- a/src/table/crdt/mod.rs +++ /dev/null @@ -1,23 +0,0 @@ -//! This package provides a simple implementation of conflict-free replicated data types (CRDTs) -//! -//! CRDTs are a type of data structures that do not require coordination. In other words, we can -//! edit them in parallel, we will always find a way to merge it. -//! -//! A general example is a counter. Its initial value is 0. Alice and Bob get a copy of the -//! counter. Alice does +1 on her copy, she reads 1. Bob does +3 on his copy, he reads 3. Now, -//! it is easy to merge their counters, order does not count: we always get 4. -//! -//! Learn more about CRDT [on Wikipedia](https://en.wikipedia.org/wiki/Conflict-free_replicated_data_type) - -mod bool; -#[allow(clippy::module_inception)] -mod crdt; -mod lww; -mod lww_map; -mod map; - -pub use self::bool::*; -pub use crdt::*; -pub use lww::*; -pub use lww_map::*; -pub use map::*; |