telar_platform_desktop/lib.rs
1mod accessibility;
2// D-Bus, and only reached on Linux: winit answers the color-scheme question itself on Windows and macOS.
3#[cfg(target_os = "linux")]
4mod color_scheme;
5mod dialogs;
6mod paths;
7pub mod platform;
8
9pub use dialogs::DesktopFileDialogs;
10pub use paths::DesktopPathsProvider;
11pub use platform::{WinitPlatform, request_dynamic_surface};
12// Re-exported from the shared winit backend so desktop consumers get the runner and its window type from one crate.
13pub use platform_winit::WinitWindow;