Skip to content

Commit

Permalink
update edition
Browse files Browse the repository at this point in the history
  • Loading branch information
eugene-babichenko committed May 13, 2024
1 parent 5f4038a commit 8750546
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ adheres to [Semantic Versioning][semver].
* It is now possible to use proper Rust attributes like `#[derive(Debug)]`,
`#[repr(C)]`, etc (any attribute you want really). This replaces the original
way this macro had for using derives and specifying representation.
* Use Rust 2021 edition.
## Added
* A type alias `StateMachine` for `rust_fsm::StateMachine<Impl>` is now
generated inside the said module.
Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[workspace]
resolver = "2"
members = ["rust-fsm", "rust-fsm-dsl"]
2 changes: 1 addition & 1 deletion rust-fsm-dsl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ categories = ["data-structures", "rust-patterns"]
keywords = ["fsm"]
version = "0.6.2"
authors = ["Yevhenii Babichenko"]
edition = "2018"
edition = "2021"

[lib]
proc-macro = true
Expand Down
2 changes: 1 addition & 1 deletion rust-fsm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ categories = ["data-structures", "rust-patterns"]
keywords = ["fsm"]
version = "0.6.2"
authors = ["Yevhenii Babichenko"]
edition = "2018"
edition = "2021"

[features]
default = ["std", "dsl"]
Expand Down

0 comments on commit 8750546

Please sign in to comment.