Skip to content

Commit 1f881a5

Browse files
committed
deps: Update dependencies
1 parent 57f5c17 commit 1f881a5

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

Cargo.toml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,23 +29,25 @@ stm32h562 = ["stm32h5/stm32h562", "device-selected", "rm0481"]
2929
stm32h563 = ["stm32h5/stm32h563", "device-selected", "rm0481"]
3030
stm32h573 = ["stm32h5/stm32h573", "device-selected", "rm0481"]
3131
# Flags for examples
32-
log-itm = []
33-
log-rtt = []
34-
log-semihost = []
32+
log-itm = ["dep:log"]
33+
log-rtt = ["dep:log"]
34+
log-semihost = ["dep:log"]
3535

3636
[dependencies]
3737
cortex-m = { version = "^0.7.7", features = ["critical-section-single-core"] }
38-
stm32h5 = { version = "*", git = "https://github.com/stm32-rs/stm32-rs-nightlies" }
39-
fugit = "0.3.6"
40-
embedded-hal = { version = "0.2.7", features = ["unproven"] }
38+
stm32h5 = "0.15.1"
39+
fugit = "0.3.7"
40+
embedded-hal = "1.0.0"
41+
defmt = { version = "0.3.8", optional = true }
42+
paste = "1.0.15"
43+
log = { version = "0.4.20", optional = true}
4144

4245
[dev-dependencies]
43-
cortex-m-rt = ">=0.6.15,<0.8"
44-
log = "0.4.11"
46+
cortex-m-rt = "0.7.3"
4547
panic-halt = "0.2.0"
4648
panic-rtt-target = { version = "0.1.0", features = ["cortex-m"] }
4749
cfg-if = "1.0.0"
48-
rtt-target = "0.4.0"
50+
rtt-target = "0.5.0"
4951
lazy_static = { version = "1.4.0", features = ["spin_no_std"] }
5052
cortex-m-log = { version = "0.8.0", features = ["itm", "semihosting", "log-integration"] }
5153
cortex-m-semihosting = "0.5.0"

0 commit comments

Comments
 (0)