Release Notes: - Separated Linux platform and X11-specific code, so that we can add Wayland support now. --------- Co-authored-by: Mikayla <mikayla@zed.dev>
19 lines
340 B
Rust
19 lines
340 B
Rust
mod blade_atlas;
|
|
mod blade_belt;
|
|
mod blade_renderer;
|
|
mod client;
|
|
mod client_dispatcher;
|
|
mod dispatcher;
|
|
mod platform;
|
|
mod text_system;
|
|
mod x11;
|
|
|
|
pub(crate) use blade_atlas::*;
|
|
pub(crate) use dispatcher::*;
|
|
pub(crate) use platform::*;
|
|
pub(crate) use text_system::*;
|
|
pub(crate) use x11::display::*;
|
|
pub(crate) use x11::*;
|
|
|
|
use blade_belt::*;
|