chio_cross_protocol/lib.rs
1//! Shared cross-protocol bridge contracts and runtime orchestration substrate.
2//!
3//! This crate centralizes the reusable types needed by outward protocol edges
4//! so each bridge path shares one definition of provenance, attenuation, and
5//! receipt-lineage behavior rather than redefining it independently.
6
7#![forbid(unsafe_code)]
8
9pub mod capability_bridge;
10pub mod discovery;
11pub mod error;
12pub mod execution;
13pub mod lifecycle;
14pub mod orchestrator;
15pub mod routing;
16pub mod semantic_hints;
17pub mod sync_bridge_shared;
18mod validation;
19
20#[cfg(test)]
21mod tests;