auths-cli 0.0.1-rc.8

Command-line interface for Auths decentralized identity system
Documentation
// CLI is the presentation boundary — Utc::now(), env::var, and printing are expected here.
#![allow(
    clippy::print_stdout,
    clippy::print_stderr,
    clippy::disallowed_methods,
    clippy::exit,
    clippy::unwrap_used,
    clippy::expect_used
)]
pub mod adapters;
pub mod cli;
pub mod commands;
pub mod config;
pub mod core;
pub mod errors;
pub mod factories;
pub mod telemetry;
pub mod ux;

pub use core::pubkey_cache::{cache_pubkey, clear_cached_pubkey, get_cached_pubkey};
pub use core::types::ExportFormat;
pub use ux::format::{Output, set_json_mode};