kael 0.2.0

GPU-accelerated native UI framework for Rust — build desktop apps with Metal, DirectX, and Vulkan rendering
Documentation
1
2
3
4
5
6
7
8
9
//! Runtime worker support for background task execution.

/// Client-side worker runtime interface.
pub mod worker_client;
/// Host-side worker runtime management.
pub mod worker_host;

pub use worker_client::WorkerClient;
pub use worker_host::WorkerHost;