taskers_ghostty/lib.rs
1pub mod backend;
2#[cfg(target_os = "linux")]
3pub mod bridge;
4pub mod runtime;
5
6pub use backend::{
7 AdapterError, BackendAvailability, BackendChoice, BackendProbe, DefaultBackend,
8 SurfaceDescriptor, TerminalBackend,
9};
10#[cfg(target_os = "linux")]
11pub use bridge::{GhosttyError, GhosttyHost};
12pub use runtime::{
13 RuntimeBootstrap, RuntimeBootstrapError, configure_runtime_environment,
14 ensure_runtime_installed,
15};