forked from rust-cy/generic-state-machine-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (25 loc) · 799 Bytes
/
Cargo.toml
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 = "generic-state-machine"
version = "0.1.0"
authors = ["CY Rust Community <[email protected]>"]
edition = "2018"
license = "MIT"
readme = "README.md"
description = "A simple Rust library that allows to create generic or Moore or Mealy state machines that allows the use of custom transition functions"
categories = ["algorithms"]
keywords = [
"state", "machine", "fsm", "mealy", "moore"
]
exclude = [
".github",
"Cargo.toml.orig",
"cargo_vcs_info.json",
]
repository = "https://github.com/klispap/generic-state-machine-rs"
[dependencies]
derivative = "2.2.0"
thiserror = "1.0.26"
anyhow = { version = "1.0.13", optional = true }
tokio = { version = "1", features = ["rt", "sync", "time", "macros"], optional = true}
[features]
async = ["tokio", "anyhow"]