label_logger/
lib.rs

1#![doc(
2	html_logo_url = "https://raw.githubusercontent.com/mrnossiom/label-logger/main/assets/logo-squared.png"
3)]
4#![doc = include_str!("../README.md")]
5
6#[cfg(feature = "dialoguer")]
7pub mod dialoguer;
8#[cfg(feature = "indicatif")]
9pub mod indicatif;
10mod log;
11mod macros;
12
13// Re-exports
14#[cfg(feature = "dialoguer")]
15pub use crate::dialoguer::LabelTheme;
16#[cfg(feature = "indicatif")]
17pub use crate::indicatif::label_theme;
18pub use crate::log::{OutputLabel, pretty_output, println_label};
19pub use console;