Finite state machines in rust; bendns fork to add types.
Diffstat (limited to 'rust_fsm/Cargo.toml')
| -rw-r--r-- | rust_fsm/Cargo.toml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/rust_fsm/Cargo.toml b/rust_fsm/Cargo.toml new file mode 100644 index 0000000..09d6a83 --- /dev/null +++ b/rust_fsm/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "rust-fsm" +description = "A framework for building finite state machines in Rust" +repository = "https://github.com/eugene-babichenko/rust-fsm" +homepage = "https://github.com/eugene-babichenko/rust-fsm" +readme = "../README.md" +license = "MIT" +categories = ["data-structures", "rust-patterns"] +keywords = ["fsm"] +version = "0.1.0" +authors = ["Yevhenii Babichenko"] +edition = "2018" + +[dependencies] |