Finite state machines in rust; bendns fork to add types.
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -30,6 +30,14 @@ of state machines: * A Moore machine by providing an output function that do not depend on the provided inputs. +## Usage in `no_std` environments + +This library has the feature named `std` which is enabled by default. You +may want to import this library as +`rust-fsm = { version = "0.5", default-features = false }` to use it in a +`no_std` environment. This only affects error types (the `Error` trait is +only available in `std`). + ## Use Initially this library was designed to build an easy to use DSL for defining |