#![cfg_attr(not(test), no_std)]
#![deny(missing_docs)]
extern crate alloc;
pub use rlvgl_core as core;
#[cfg(feature = "apng")]
pub use rlvgl_core::apng;
#[cfg(feature = "canvas")]
pub use rlvgl_core::canvas;
#[cfg(feature = "fatfs")]
pub use rlvgl_core::fatfs;
#[cfg(feature = "fontdue")]
pub use rlvgl_core::fontdue;
#[cfg(feature = "gif")]
pub use rlvgl_core::gif;
#[cfg(feature = "lottie")]
pub use rlvgl_core::lottie;
#[cfg(feature = "nes")]
pub use rlvgl_core::nes;
#[cfg(feature = "pinyin")]
pub use rlvgl_core::pinyin;
pub use rlvgl_i18n as i18n;
pub use rlvgl_platform as platform;
pub use rlvgl_ui as ui;
pub use rlvgl_widgets as widgets;