Skip to main content

profile_runtime/
lib.rs

1//! Canonical v25 composition lane.
2//!
3//! `profile-runtime` owns the effective constitution surface for concrete,
4//! profile-sensitive decision contexts. Family-specific profile content remains
5//! in existing owner crates; this crate composes those overlays into one
6//! replayable answer with typed conflicts and explicit exceptions.
7
8pub mod adapters;
9pub mod applicability;
10pub mod compose;
11pub mod constitution;
12pub mod exception;
13pub mod profile_set;
14pub mod rules;
15
16pub use adapters::*;
17pub use applicability::*;
18pub use compose::*;
19pub use constitution::*;
20pub use exception::*;
21pub use profile_set::*;
22pub use rules::*;