4 releases
0.1.2 | Jan 5, 2024 |
---|---|
0.1.1 | Feb 3, 2023 |
0.1.0 | Feb 3, 2023 |
0.0.0 | Apr 16, 2021 |
#513 in Asynchronous
130KB
2K
SLoC
Augrim
Overview
Augrim is a collection of reusable consensus algorithms.
Current algorithms implemented:
- 2PC
Resources
The following resources are available for Augrim:
License
Augrim is licensed under the Apache License Version 2.0 software license.
lib.rs
:
Augrim
Augrim is a collection of reusable consensus algorithms.
Using Augrim's Algorithms
To use an algorithm, your application will commonly need to do two primary things:
- Input
Events
into theAlgorithm::event
method. - Process the list of
Actions
returned by theAlgorithm::event
method.
The specific actions and events differ by algorithm; refer to the algorithm's documentation.
Dependencies
~88KB