//! # Deprecated
//!
//! `retroglyph-widgets` has been renamed to
//! [`retroglyph-ui`](https://crates.io/crates/retroglyph-ui). The crate outgrew "widgets": it is
//! a full immediate-mode terminal UI toolkit (layout, input/focus, theming, animation, and a
//! scrolling camera, not just drawable widgets).
//!
//! No further releases of `retroglyph-widgets` will be published. Migrate by replacing the
//! dependency and the crate path:
//!
//! ```toml
//! # Cargo.toml
//! retroglyph-ui = "0.4"
//! ```
//!
//! ```text
//! // s/retroglyph_widgets/retroglyph_ui/ across your imports
//! use retroglyph_ui::{Gauge, Widget};
//! ```
//!
//! The `0.4.1` release remains available for existing pinned builds; this `0.4.2` exists only to
//! surface the rename to anyone adding the crate fresh.