appcui 0.4.8

A feature-rich and cross-platform TUI/CUI framework for Rust, enabling modern terminal-based applications on Windows, Linux, and macOS. Includes built-in UI components like buttons, menus, list views, tree views, checkboxes, and more. Perfect for building fast and interactive CLI tools and text-based interfaces.
Documentation
pub(super) mod area_format;
pub(super) mod bool_format;
pub(super) mod currency_format;
pub(super) mod datetime_format;
pub(super) mod distance_format;
pub(super) mod float_format;
pub(super) mod numeric_format;
pub(super) mod percentage_format;
pub(super) mod rating_format;
pub(super) mod size_format;
pub(super) mod speed_format;
pub(super) mod status_format;
pub(super) mod temperature_format;
pub(super) mod volume_format;
pub(super) mod weight_format;

pub use self::area_format::AreaFormat;
pub use self::bool_format::BoolFormat;
pub use self::currency_format::CurrencyFormat;
pub use self::datetime_format::DateFormat;
pub use self::datetime_format::DateTimeFormat;
pub use self::datetime_format::DurationFormat;
pub use self::datetime_format::TimeFormat;
pub use self::distance_format::DistanceFormat;
pub use self::float_format::FloatFormat;
pub use self::numeric_format::NumericFormat;
pub use self::percentage_format::PercentageFormat;
pub use self::rating_format::RatingFormat;
pub use self::size_format::SizeFormat;
pub use self::speed_format::SpeedFormat;
pub use self::status_format::Status;
pub use self::status_format::StatusFormat;
pub use self::temperature_format::TemperatureFormat;
pub use self::volume_format::VolumeFormat;
pub use self::weight_format::WeightFormat;