bynk/diagnostics.rs
1//! Project-failure rendering for the driver.
2//!
3//! #521: the flattening layer (ADR 0100) is shared with `bynkc` in
4//! [`bynk_driver`]; this module survives as re-exports under the driver's
5//! historical `render_*` names.
6
7pub use bynk_driver::print_project_failure as render_project_failure;
8#[allow(unused_imports)]
9pub use bynk_driver::print_project_failure_short as render_project_failure_short;
10pub use bynk_driver::print_project_warnings;