lvgl-rs/lvgl/src/lib.rs

20 lines
279 B
Rust
Raw Normal View History

2020-06-07 18:29:35 +00:00
#![feature(try_trait)]
2020-04-11 18:35:33 +00:00
#![no_std]
2020-06-12 10:41:20 +00:00
#[macro_use]
extern crate alloc;
2020-06-01 20:45:33 +00:00
#[macro_use]
extern crate bitflags;
2020-04-12 10:19:28 +00:00
mod display;
mod global;
mod support;
#[macro_use]
2020-06-04 00:00:31 +00:00
mod lv_core;
pub mod widgets;
pub use display::DisplayDriver;
2020-06-07 18:29:35 +00:00
pub use global::UI;
2020-06-04 00:00:31 +00:00
pub use lv_core::*;
pub use support::*;