# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2018" name = "generic-state-machine" version = "0.1.0" authors = ["CY Rust Community "] exclude = [ ".github", "Cargo.toml.orig", "cargo_vcs_info.json", ] description = "A simple Rust library that allows to create generic or Moore or Mealy state machines that allows the use of custom transition functions" readme = "README.md" keywords = [ "state", "machine", "fsm", "mealy", "moore", ] categories = ["algorithms"] license = "MIT" repository = "https://github.com/klispap/generic-state-machine-rs" [dependencies.anyhow] version = "1.0.13" optional = true [dependencies.derivative] version = "2.2.0" [dependencies.thiserror] version = "1.0.26" [dependencies.tokio] version = "1" features = [ "rt", "sync", "time", "macros", ] optional = true [features] async = [ "tokio", "anyhow", ]