//! `vortix-config`: settings, profile store, and secret store for vortix.
//!
//! Plan 006 populates this crate with:
//! - [`settings::Settings`] (U1) — figment-layered resolution of defaults →
//! system file → user file → env → CLI.
//! - [`profile_store::ProfileStore`] (U2) — filesystem-backed profile storage
//! with sidecar metadata.
//! - [`secret_store::SecretStore`] (U3) — keyring-first secret storage with
//! encrypted-file fallback.
//!
//! Plan 006's remaining units (U4 migration, U5 tunnel-secret integration,
//! U7 main.rs wire-up) land in subsequent commits.
pub use ConfigError;
pub use ;
pub use ;
pub use ;
pub use ;