2 releases

Uses old Rust 2015

0.0.2 Apr 19, 2024
0.0.1 Dec 26, 2016

#1486 in Asynchronous

Download history 9/week @ 2024-02-24 1/week @ 2024-03-02 17/week @ 2024-03-30 5/week @ 2024-04-06 78/week @ 2024-04-13 43/week @ 2024-04-20

143 downloads per month

MIT license

19KB
362 lines

Kabuki

Actor library built on top of the Tokio platform.

Overview

Kabuki provides a simple way to structure concurrent applications built for the Tokio / Futures platform. It is based on the actor model. An actor is a small unit of computation that is used to manage state and resources. It receives messages from other actors and performs some kind of action based on that input. This way, instead of having state and resources accessed concurrently, only a single thread access it and concurrent access is handled through message passing.

Motivation

Tokio and Futures provide a lightweight task primitive. However, it leaves the details of managing concurrency up to the developer.

Usage

First, add this to your Cargo.toml:

[dependencies]
kabuki = { git = "https://github.com/carllerche/kabuki" }

Next, add this to your crate:

extern crate kabuki;

And then, use kabuki!

License

kabuki is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0), with portions covered by various BSD-like licenses.

See LICENSE-APACHE, and LICENSE-MIT for details.

Dependencies

~6MB
~94K SLoC