mirror of
https://codeberg.org/waydeer/layer-shika.git
synced 2025-11-06 16:34:22 +00:00
21 lines
633 B
Rust
21 lines
633 B
Rust
#![allow(clippy::pub_use)]
|
|
|
|
pub mod errors;
|
|
pub mod rendering;
|
|
pub mod wayland;
|
|
|
|
pub use rendering::femtovg::popup_window::PopupWindow;
|
|
|
|
pub mod platform {
|
|
pub use slint;
|
|
pub use slint_interpreter;
|
|
|
|
pub mod calloop {
|
|
pub use smithay_client_toolkit::reexports::calloop::channel;
|
|
pub use smithay_client_toolkit::reexports::calloop::generic::Generic;
|
|
pub use smithay_client_toolkit::reexports::calloop::timer::{TimeoutAction, Timer};
|
|
pub use smithay_client_toolkit::reexports::calloop::{
|
|
EventSource, InsertError, Interest, Mode, PostAction, RegistrationToken,
|
|
};
|
|
}
|
|
}
|