diff options
author | Marc Poulhiès <dkm@kataplop.net> | 2022-02-26 14:56:49 +0100 |
---|---|---|
committer | Marc Poulhiès <dkm@kataplop.net> | 2022-02-26 14:56:49 +0100 |
commit | 60e28ae4ee0e73a9d73f67c28834fcc45f4695df (patch) | |
tree | ba4e8911a1b8241e27581ad0615e175f5ab1b48e /firmware | |
parent | b79621076080ee1518189aa9f8788780f618aa21 (diff) |
Bump cortex-m* dep version
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/Cargo.toml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/firmware/Cargo.toml b/firmware/Cargo.toml index 5cc1170..54f44cc 100644 --- a/firmware/Cargo.toml +++ b/firmware/Cargo.toml @@ -7,11 +7,11 @@ edition = "2018" [dependencies] stm32f0xx-hal = { git = "https://github.com/dkm/stm32f0xx-hal/", features = ["rt", "stm32f072", "stm32-usbd"] } ##stm32f0xx-hal = { version = "0.17.0", features = ["rt", "stm32f072", "stm32-usbd"] } -cortex-m = "0.6" -cortex-m-rt = { version = "0.6", features = ["device"] } +cortex-m = "0.7" +cortex-m-rt = { version = "0.7", features = ["device"] } panic-halt = "0.2" keyberon = { git = "https://github.com/TeXiToi/keyberon" } -cortex-m-rtic = { version = "0.5.8", default-features = false, features = ["cortex-m-7"] } +cortex-m-rtic = { version = "0.5", default-features = false, features = ["cortex-m-7"] } embedded-hal = "0.2" usb-device = "0.2" nb = "1.0" @@ -26,5 +26,4 @@ debug = true [features] default = [ ] - testmode = [ ] |