16 releases

0.0.16 Oct 14, 2022
0.0.15 Jun 8, 2021
0.0.14 Mar 3, 2021
0.0.6 Nov 23, 2020

#499 in Data structures

50 downloads per month
Used in 2 crates

BSD-3-Clause

42KB
622 lines

Build Status docs.rs

crdt_tree

A Conflict-free Replicated Data Type (CRDT) Tree written in Rust.

MaidSafe website SAFE Network Forum

About

This crate aims to be an accurate implementation of the tree crdt algorithm described in the paper:

A highly-available move operation for replicated trees and distributed filesystems by M. Kleppmann, et al.

Please refer to the paper for a description of the algorithm's properties.

For clarity, data structures in this implementation are named the same as in the paper (State, Tree) or close to (OpMove --> Move, LogOpMove --> LogOp). Some are not explicitly named in the paper, such as TreeId,TreeMeta, TreeNode, Clock.

Additional References

Usage

See examples/tree.rs or tests/tree.rs.

In particular, the Replica struct in examples/tree.rs may be helpful.

Other Implementations

There is a PHP implementation here.

License

This Safe Network library is licensed under the BSD-3-Clause license.

See the LICENSE file for more details.

Contributing

Want to contribute? Great 🎉

There are many ways to give back to the project, whether it be writing new code, fixing bugs, or just reporting errors. All forms of contributions are encouraged!

For instructions on how to contribute, see our Guide to contributing.

Dependencies

~3.5MB
~75K SLoC