Finite state machines in rust; bendns fork to add types.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml5
1 files changed, 3 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 667db86..8bfce93 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -13,11 +13,12 @@ authors = ["Yevhenii Babichenko"]
edition = "2018"
[features]
-default = ["std"]
+default = ["std", "dsl"]
std = []
+dsl = ["rust-fsm-dsl"]
[dependencies]
-rust-fsm-dsl = { path = "./rust_fsm_dsl", version = "0.4.0" }
+rust-fsm-dsl = { path = "./rust_fsm_dsl", version = "0.4.0", optional = true }
[profile.dev]
panic = "abort"