ff-core 0.3.3

FlowFabric core types, partition math, key builders, error codes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Core types, state enums, partition math, key builders, and error codes for FlowFabric.

pub mod backend;
pub mod completion_backend;
pub mod contracts;
pub mod engine_backend;
pub mod engine_error;
pub mod error;
pub mod hash;
pub mod keys;
pub mod partition;
pub mod policy;
pub mod state;
pub mod types;

// Convenience re-export so consumers can write `ff_core::EngineError`.
pub use engine_error::EngineError;