-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 753 Bytes
/
Cargo.toml
File metadata and controls
28 lines (24 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "stateless"
version = "0.4.1"
authors = ["Matthew Berger <matthewjordanberger@gmail.com>"]
description = """
A lightweight, zero-cost state machine library that separates structure from behavior.
Guards and actions live in wrapper code, not the DSL.
"""
homepage = "https://github.com/matthewjberger/stateless"
repository = "https://github.com/matthewjberger/stateless"
keywords = ["state-machine", "macro", "enum", "no-std"]
license = "MIT"
edition = "2024"
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "2.0", features = ["full"] }
[dev-dependencies]
nightshade = { version = "0.9", default-features = false, features = ["terminal"] }
[[example]]
name = "robot"
required-features = []