Finite state machines in rust; bendns fork to add types.
update docs
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | src/lib.rs | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -34,7 +34,7 @@ of state machines: 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, features = ["dsl"] }` +`rust-fsm = { version = "0.6", default-features = false, features = ["dsl"] }` to use it in a `no_std` environment. This only affects error types (the `Error` trait is only available in `std`). @@ -31,7 +31,7 @@ //! //! 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, features = ["dsl"] }` +//! `rust-fsm = { version = "0.6", default-features = false, features = ["dsl"] }` //! to use it in a `no_std` environment. This only affects error types (the //! `Error` trait is only available in `std`). //! |