Since `WindowsDispatcher` requires a minimum Windows version of Windows 10 Fall Creators Update (10.0.16299), and the `alacritty_terminal` dependency relies on conPTY, an API introduced in the same version, additionally, `DirectWriteTextSystem` also relies on Windows 10 Fall Creators Update (10.0.16299), so it seems reasonable to make `CosmicTextSystem` Linux-only. And we can use `DirectWriteTextSystem` on the Windows platform exclusively. I hope this approach makes sense. Release Notes: - N/A
15 lines
275 B
Rust
15 lines
275 B
Rust
mod dispatcher;
|
|
mod headless;
|
|
mod platform;
|
|
mod text_system;
|
|
mod wayland;
|
|
mod x11;
|
|
mod xdg_desktop_portal;
|
|
|
|
pub(crate) use dispatcher::*;
|
|
pub(crate) use headless::*;
|
|
pub(crate) use platform::*;
|
|
pub(crate) use text_system::*;
|
|
pub(crate) use wayland::*;
|
|
pub(crate) use x11::*;
|