// ---
// tags: cybergraph, rust
// crystal-type: source
// crystal-domain: cyber
// ---
//! cybergraph โ local-first cyberlink processor.
//!
//! cybergraph is the unified API for cyberlink lifecycle: declare an intent,
//! seal an intent into a signal, submit a discrete signal (`link`), subscribe
//! to events, and query cybergraph relations via `inf`.
//!
//! Backends:
//! bbg โ authenticated state (store)
//! foculus โ sync-protocol mechanics: chain, VDF, equivocation, DAS, CRDT
//! radio โ wire transport
//!
//! Signal/chain/VDF types are re-exported from `foculus` so downstream
//! callers (soma, soft3 SDK) have a single import for the public API.
// Re-export foundational identity types so downstream crates don't need a
// direct dependency on bbg just to name a Particle or NeuronId.
pub use ;
// Re-export the signal lifecycle primitives owned by sync.
pub use ;
// The five-verb public API.
pub use ;
pub use BbgSource;
// inf query result type, re-exported so callers don't depend on inf-eval directly.
pub use Output as QueryOutput;