xactor 0.7.11

Xactor is a rust actors framework based on async-std
Documentation
1
2
3
4
5
6
use xactor::*;

#[xactor::main]
async fn main() -> Result<()> {
    Ok(())
}