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;
12mod util;
13
14// Re-exports
15#[cfg(feature = "dialoguer")]
16pub use crate::dialoguer::LabelTheme;
17#[cfg(feature = "indicatif")]
18pub use crate::indicatif::label_theme;
19pub use crate::log::{pretty_output, println_label, OutputLabel};
20pub use console;