generic-state-machine 0.1.0

A simple Rust library that allows to create generic or Moore or Mealy state machines that allows the use of custom transition functions
Documentation
[dependencies.anyhow]
optional = true
version = "1.0.13"

[dependencies.derivative]
version = "2.2.0"

[dependencies.thiserror]
version = "1.0.26"

[dependencies.tokio]
features = ["rt", "sync", "time", "macros"]
optional = true
version = "1"

[features]
async = ["tokio", "anyhow"]

[package]
authors = ["CY Rust Community <cy.rust.community@gmail.com>"]
categories = ["algorithms"]
description = "A simple Rust library that allows to create generic or Moore or Mealy state machines that allows the use of custom transition functions"
edition = "2018"
exclude = [".github", "Cargo.toml.orig", "cargo_vcs_info.json"]
keywords = ["state", "machine", "fsm", "mealy", "moore"]
license = "MIT"
name = "generic-state-machine"
readme = "README.md"
repository = "https://github.com/klispap/generic-state-machine-rs"
version = "0.1.0"