Skip to content

Commit ae4145b

Browse files
committed
Switch to 2021 edition.
1 parent 68ba443 commit ae4145b

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

Cargo.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
[workspace]
2+
resolver = "2"
3+
24
members = [
35
"finny/",
46
"finny_derive/",
@@ -7,4 +9,4 @@ members = [
79

810
exclude = [
911
"finny_nostd_tests/"
10-
]
12+
]

finny/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "finny"
33
version = "0.2.0"
44
authors = ["Rudi Benkovic <rudi.benkovic@gmail.com>"]
5-
edition = "2018"
5+
edition = "2021"
66
repository = "https://github.com/hashmismatch/finny.rs"
77
description = "Finite State Machines with a procedural builder-style API and compile time transition checks."
88
license = "MIT OR Apache-2.0"
@@ -22,4 +22,4 @@ default = ["std", "inspect_slog", "timers_std"]
2222
std = ["arraydeque/std", "timers_std", "slog/std", "finny_derive/std"]
2323
inspect_slog = ["slog"]
2424
timers_std = []
25-
generate_plantuml = ["finny_derive/generate_plantuml"]
25+
generate_plantuml = ["finny_derive/generate_plantuml"]

finny_derive/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "finny_derive"
33
version = "0.2.0"
44
authors = ["Rudi Benkovic <rudi.benkovic@gmail.com>"]
5-
edition = "2018"
5+
edition = "2021"
66
repository = "https://github.com/hashmismatch/finny.rs"
77
description = "Procedural macros crate for the main finite state machine crate, finny."
88
license = "MIT OR Apache-2.0"
@@ -22,4 +22,4 @@ syn = { version = "1.0", features = ["full", "extra-traits", "visit"] }
2222
proc-macro2 = "1.0"
2323
petgraph = "0.5"
2424
serde = { version = "1.0", features = ["derive"] }
25-
serde_json = "1.0"
25+
serde_json = "1.0"

finny_nostd_tests/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "finny_nostd_tests"
33
version = "0.1.0"
44
authors = ["Rudi Benkovic <rudi.benkovic@gmail.com>"]
5-
edition = "2018"
5+
edition = "2021"
66
publish = false
77

88
[dependencies]

finny_tests/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "finny_tests"
33
version = "0.1.0"
44
authors = ["Rudi Benkovic <rudi.benkovic@gmail.com>"]
55
publish = false
6-
edition = "2018"
6+
edition = "2021"
77

88
[dependencies]
99
finny = { path = "../finny/" }

0 commit comments

Comments
 (0)