[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
features = ["full", "extra-traits"]
version = "1.0"
[[example]]
name = "demo"
path = "examples/demo.rs"
[[example]]
name = "hierarchical"
path = "examples/hierarchical.rs"
[lib]
name = "stateless"
path = "src/lib.rs"
proc-macro = true
[package]
authors = ["Matthew Berger <matthewjordanberger@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = """
A lightweight, zero-cost state machine library that separates structure from behavior.\r
Guards and actions live in wrapper code, not the DSL.\r
"""
edition = "2021"
homepage = "https://github.com/matthewjberger/stateless"
keywords = ["state-machine", "macro", "enum", "no-std"]
license = "MIT"
name = "stateless"
readme = "README.md"
repository = "https://github.com/matthewjberger/stateless"
version = "0.1.0"
[[test]]
name = "convert"
path = "tests/convert.rs"