Finite state machines in rust; bendns fork to add types.
Diffstat (limited to 'rust-fsm-dsl/Cargo.toml')
| -rw-r--r-- | rust-fsm-dsl/Cargo.toml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/rust-fsm-dsl/Cargo.toml b/rust-fsm-dsl/Cargo.toml new file mode 100644 index 0000000..4803017 --- /dev/null +++ b/rust-fsm-dsl/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "rust-fsm-dsl" +description = "Macros for rust-fsm DSL" +repository = "https://github.com/eugene-babichenko/rust-fsm" +homepage = "https://github.com/eugene-babichenko/rust-fsm" +documentation = "https://docs.rs/rust-fsm-dsl/" +readme = "../README.md" +license = "MIT" +categories = ["data-structures", "rust-patterns"] +keywords = ["fsm"] +version = "0.6.0" +authors = ["Yevhenii Babichenko"] +edition = "2018" + +[lib] +proc-macro = true + +[dependencies] +syn = "1" +quote = "1" |