tinystate 0.1.1

Fast and tiny finite state machine
Documentation
[package]
name = "tinystate"
version = "0.1.1"
edition = "2024"
authors = ["Saverio Scagnoli <svscagn@gmail.com>"]
description = "Fast and tiny finite state machine"
documentation = "https://docs.rs/tinystate"
repository = "https://github.com/saverioscagnoli/tinystate"
homepage = "https://github.com/saverioscagnoli/tinystate"
license = "MIT"
readme = "README.md"
keywords = ["dfa", "fsm", "automata", "state-machine"]

exclude = [".gitignore", "assets", "CHANGELOG.md"]

[workspace]
members = ["derive"]

[dependencies]
tinystate-derive = { version = "0.1.0", path = "derive", optional = true }

[dev-dependencies]
tinystate = { path = ".", features = ["derive"] }

[features]
default = []
costs = []
derive = ["dep:tinystate-derive"]