[package]
edition = "2024"
name = "finitomata_macro"
version = "0.1.1"
authors = ["Aleksei Matiushkin"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macros for the finitomata FSM library"
homepage = "https://github.com/am-kantox/finitomata.rs"
documentation = "https://docs.rs/finitomata_macro"
readme = false
keywords = [
"fsm",
"state-machine",
"macro",
"proc-macro",
"derive",
]
categories = ["development-tools"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/am-kantox/finitomata.rs"
resolver = "2"
[lib]
name = "finitomata_macro"
path = "src/lib.rs"
proc-macro = true
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = [
"full",
"extra-traits",
]