# Hannibal [![build](https://img.shields.io/github/workflow/status/hoodie/hannibal/CI)](https://github.com/hoodie/notify-rust/actions?query=workflow%3A"Continuous+Integration") [![version](https://img.shields.io/crates/v/hannibal)](https://crates.io/crates/hannibal/) [![downloads](https://img.shields.io/crates/d/hannibal.svg?style=flat-square)](https://crates.io/crates/hannibal) [![docs.rs docs](https://img.shields.io/badge/docs-latest-blue.svg?style=flat-square)](https://docs.rs/hannibal) [![contributors](https://img.shields.io/github/contributors/hoodie/notify-rust)](https://github.com/hoodie/hannibal/graphs/contributors) ![maintenance](https://img.shields.io/maintenance/yes/2021) [![license](https://img.shields.io/crates/l/hannibal.svg?style=flat)](https://crates.io/crates/hannibal/) a small actor library

Why

Credit where credit is due: Hannibal is a fork of the excellent Xactor which unfortunately received very little interest by its original maintainer recently.

Documentation

Features

Examples

```rust use hannibal::*;

[message(result = "String")]

struct ToUppercase(String);

struct MyActor;

impl Actor for MyActor {}

[asynctrait::asynctrait]

impl Handler for MyActor { async fn handle(&mut self, ctx: &mut Context, msg: ToUppercase) -> String { msg.0.touppercase() } }

[hannibal::main]

async fn main() -> Result<()> { // Start actor and get its address let mut addr = MyActor.start().await?;

// Send message `ToUppercase` to actor via addr
let res = addr.call(ToUppercase("lowercase".to_string())).await?;
assert_eq!(res, "LOWERCASE");
Ok(())

} ```

Installation

Hannibal requires async-trait on userland.

With cargo add installed, run:

sh $ cargo add hannibal $ cargo add async-trait

We also provide the tokio runtime instead of async-std. To use it, you need to activate runtime-tokio and disable default features.

You can edit your Cargo.toml as follows:

toml hannibal = { version = "x.x.x", features = ["runtime-tokio"], default-features = false }

References