1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//! OmniPaxos is a library for implementing distributed replicated logs with strong consistency guarantees
//! that provides seamless reconfiguration while also being completely resilient to partial network partitions.
//! This library provides the distributed log abstraction as a black-box for the user, where the user only has to
//! provide its desired network and storage implementations.
//!
//! # Crate feature flags
//! The following crate feature flags are available. They are configured in your Cargo.toml.
//! * `batch_accept` - Batch multiple log entries into a single message to reduce overhead.
//! * `logging` - System-wide logging with the slog crate
//! * `toml_config` - Create an OmniPaxos instance from a TOML configuration file
//! * `serde` - Serialization and deserialization of messages and internal structs with serde. Disable this if you want to implement your own custom ser/deserialization or want to store data that is not serde-supported.
/// Trait and struct related to the leader election in Omni-Paxos.
/// OmniPaxos error definitions
/// The different messages OmniPaxos servers can communicate to each other with.
/// The user-facing OmniPaxos struct.
pub use *;
/// The core replication algorithm of OmniPaxos.
pub
/// Traits and structs related to the backend storage of an OmniPaxos server.
/// Traits, structs, and types related to the unicache.
/// A module containing helper functions and structs.
/// A module containing helper functions and structs.
extern crate omnipaxos_macros;
/// Macros in the omnipaxos crate