zuki-dev/zuki
High-performance async runtime for Zig — fast, cross-platform, and zero-cost by design
The async runtime for Zig you've never heard of — until now.
Most async runtimes make compromises. Zuki doesn't:
Zuki is in early development — APIs change, bugs exist, documentation is minimal.
The foundation is solid and performance is already impressive. Good for:
Not ready for production.
// Create an async task
var delay = DelayFuture.from_millis(&timer, 1000);
const task = Task.from_future(&delay, 1);
// Run it on the executor
var executor = try SingleThreadedExecutor.init(allocator);
try executor.spawn(task);
try executor.run();
Simple. No complexity, no overhead.
What makes Zuki different:
Zuki needs contributors who understand performance:
Ready to try the async runtime you've never heard of?