qualia_core_db/foundation/mod.rs
1//! `foundation` category (reorg).
2
3#[cfg(any(
4 not(target_arch = "wasm32"),
5 feature = "wasm-logic",
6 feature = "wasm-scientific",
7 feature = "wasm-full"
8))]
9pub mod crdt;
10pub mod frame_layout;
11pub mod fuzz_testing;
12pub mod telemetry;
13#[cfg(any(not(target_arch = "wasm32"), feature = "wasm-llm"))]
14pub mod topology_draft;