abscissa_core 0.9.0

Application microframework with support for command-line option parsing, configuration, error handling, logging, and terminal interactions. This crate contains the framework's core functionality.
Documentation
1
2
3
4
5
6
7
8
9
//! Tracing subsystem

#[cfg(feature = "application")]
pub mod component;
mod config;

#[cfg(feature = "application")]
pub use self::component::Tracing;
pub use self::config::Config;