runx-core 0.6.19

Pure Rust parity kernel for runx state-machine and policy decisions.
Documentation
mod fanout;
mod sequential_graph;
mod single_step;
mod types;

pub use fanout::{evaluate_fanout_sync, fanout_sync_decision_key};
pub use sequential_graph::{
    SequentialGraphStepIndex, apply_sequential_graph_event, create_sequential_graph_state,
    create_sequential_graph_step_index, plan_sequential_graph_transition,
    plan_sequential_graph_transition_indexed, transition_sequential_graph,
};
pub use single_step::{create_single_step_state, transition_single_step};
pub use types::{
    AuthorityAdmissionWitness, FanoutBranchFailurePolicy, FanoutBranchResult, FanoutConflictGate,
    FanoutGate, FanoutGateAction, FanoutGroupPolicy, FanoutSyncDecision, FanoutSyncOutcome,
    FanoutSyncStrategy, FanoutThresholdGate, GraphStatus, GraphStepStatus, RetryPolicy,
    SequentialGraphEvent, SequentialGraphPlan, SequentialGraphState, SequentialGraphStepDefinition,
    SequentialGraphStepState, SingleStepEvent, SingleStepState, StepAdmissionWitness, StepStatus,
};