retroglyph_widgets/lib.rs
1//! # Deprecated
2//!
3//! `retroglyph-widgets` has been renamed to
4//! [`retroglyph-ui`](https://crates.io/crates/retroglyph-ui). The crate outgrew "widgets": it is
5//! a full immediate-mode terminal UI toolkit (layout, input/focus, theming, animation, and a
6//! scrolling camera, not just drawable widgets).
7//!
8//! No further releases of `retroglyph-widgets` will be published. Migrate by replacing the
9//! dependency and the crate path:
10//!
11//! ```toml
12//! # Cargo.toml
13//! retroglyph-ui = "0.4"
14//! ```
15//!
16//! ```text
17//! // s/retroglyph_widgets/retroglyph_ui/ across your imports
18//! use retroglyph_ui::{Gauge, Widget};
19//! ```
20//!
21//! The `0.4.1` release remains available for existing pinned builds; this `0.4.2` exists only to
22//! surface the rename to anyone adding the crate fresh.
23#![deprecated(note = "renamed to `retroglyph-ui`; see https://crates.io/crates/retroglyph-ui")]