Skip to main content

qualia_core_db/governance/
mod.rs

1//! `governance` 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 coordination;
10pub mod illocution;
11pub mod modal_kind;
12pub mod provenance;
13#[cfg(not(target_arch = "wasm32"))]
14pub mod web_civics;
15#[cfg(any(not(target_arch = "wasm32"), feature = "wasm-scientific"))]
16pub mod webizen;
17#[cfg(any(
18    not(target_arch = "wasm32"),
19    any(feature = "wasm-scientific", feature = "wasm-logic")
20))]
21pub mod webizen_bytecode;
22#[cfg(not(target_arch = "wasm32"))]
23pub mod webizen_sync;
24pub mod webizen_validator;