flashkraft-core 1.1.3

Shared core logic for FlashKraft — domain models, flash pipeline, drive detection
Documentation
1
2
3
4
5
6
7
8
9
10
//! Utility modules for FlashKraft Core
//!
//! Contains debug-logging macros shared across all crates.
//! GUI-specific utilities (icon mappers, etc.) live in `flashkraft-gui`.

pub mod logger;
pub use logger::fmt_bytes;

// Macros defined with #[macro_export] in logger.rs are automatically
// available at the crate root as `flashkraft_core::debug_log!` etc.