cruster 0.0.27

A Rust framework for building distributed, stateful entity systems with durable workflows
Documentation
use cruster::{entity, entity_impl};

struct NotSerializable {
    value: std::cell::Cell<i32>,
}

#[entity]
#[derive(Clone)]
struct BadEntity;

#[entity_impl]
impl BadEntity {
    #[workflow]
    async fn bad(&self, value: NotSerializable) -> Result<(), cruster::error::ClusterError> {
        let _ = value;
        Ok(())
    }
}

fn main() {}