ff_core/lib.rs
1//! Core types, state enums, partition math, key builders, and error codes for FlowFabric.
2
3pub mod backend;
4pub mod caps;
5pub mod completion_backend;
6pub mod contracts;
7pub mod engine_backend;
8pub mod engine_error;
9pub mod error;
10pub mod handle_codec;
11pub mod hash;
12pub mod keys;
13pub mod partition;
14pub mod policy;
15pub mod state;
16pub mod types;
17pub mod waitpoint_hmac;
18
19// Convenience re-export so consumers can write `ff_core::EngineError`.
20pub use engine_error::EngineError;
21// #88: backend-agnostic transport error carried across public
22// ff-sdk / ff-server surfaces. Kept alongside `EngineError` so
23// consumers can `use ff_core::{BackendError, BackendErrorKind}`.
24pub use engine_error::{BackendError, BackendErrorKind};
25// DX (HHH v0.3.4 re-smoke): re-export `ScannerFilter` at crate root
26// so consumers can write `ff_core::ScannerFilter` instead of the
27// longer `ff_core::backend::ScannerFilter` path.
28pub use backend::ScannerFilter;