//! Phase 3: Feature-gated CLI handlers (security, quantization, profiling)
//!
//! This module is split into four submodules by concern:
//! - [`signing`] — Ed25519 sign / verify-sig
//! - [`encryption`] — AES-256-GCM encrypt / decrypt
//! - [`quantize`] — Q4_0 / Q8_0 quantization, sharded import, HE inspection
//! - [`profile`] — profiling / sweeps / amdahl / roofline
pub use ;
pub use run_profile;
pub use ;
pub use ;
/// Dispatch CLI output to JSON or human-readable text based on global flags.
///
/// Shared helper used by all phase3 submodules. `json_fn` runs when
/// `global.json` is set; otherwise `text_fn` runs unless `global.quiet`
/// suppresses all output.
pub