Skip to content

Commit f951e45

Browse files
committed
Update remaining crates to edition 2021.
MSRV needs to move to 1.68 for this to work since there are deps that depend on that version.
1 parent 9a8d831 commit f951e45

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

cortex-m-rt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ version = "0.7.5"
1616
autoexamples = true
1717
links = "cortex-m-rt" # Prevent multiple versions of cortex-m-rt being linked
1818
edition = "2021"
19-
rust-version = "1.61"
19+
rust-version = "1.68"
2020

2121
[dependencies]
2222
cortex-m-rt-macros = { path = "macros", version = "=0.7.5" }

cortex-m/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ license = "MIT OR Apache-2.0"
1111
name = "cortex-m"
1212
readme = "README.md"
1313
repository = "https://github.com/rust-embedded/cortex-m"
14-
version = "0.7.7"
15-
edition = "2018"
14+
version = "0.7.8"
15+
edition = "2021"
1616
links = "cortex-m" # prevent multiple versions of this crate to be linked together
17-
rust-version = "1.61"
17+
rust-version = "1.68"
1818

1919
[dependencies]
2020
bare-metal = { version = "0.2.4", features = ["const-fn"] }

panic-itm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ keywords = ["panic-impl", "panic-handler", "ITM", "ARM", "Cortex-M"]
1010
license = "MIT OR Apache-2.0"
1111
name = "panic-itm"
1212
repository = "https://github.com/rust-embedded/cortex-m"
13-
version = "0.4.2"
14-
edition = "2018"
13+
version = "0.4.3"
14+
edition = "2021"
1515

1616
[dependencies]
1717
cortex-m = { path = "../cortex-m", version = ">= 0.5.8, < 0.8" }

testsuite/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
authors = ["The Cortex-M Team <cortex-m@teams.rust-embedded.org>"]
33
name = "testsuite"
44
publish = false
5-
edition = "2018"
6-
version = "0.1.0"
5+
edition = "2021"
6+
version = "0.1.1"
77

88
[features]
99
rtt = ["rtt-target", "minitest/rtt"]

xtask/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "xtask"
3-
version = "0.0.0"
3+
version = "0.0.1"
44
authors = ["The Cortex-M Team <cortex-m@teams.rust-embedded.org>"]
5-
edition = "2018"
5+
edition = "2021"
66
publish = false
77

88
[[test]]

0 commit comments

Comments
 (0)