diff options
author | Dario Nieuwenhuis <dirbaio@dirbaio.net> | 2021-06-01 15:53:44 +0200 |
---|---|---|
committer | Dario Nieuwenhuis <dirbaio@dirbaio.net> | 2021-06-01 15:53:44 +0200 |
commit | 1f2097ab114218480485d40088bb84e9f553c690 (patch) | |
tree | 97e1a4bc030566a8ff3a883f994f7429c69de9f0 /stm32-metapac | |
parent | 4c03fdb0947d30896e6344e882d7217632a66ccd (diff) | |
download | embassy-1f2097ab114218480485d40088bb84e9f553c690.zip |
cortex-m-rt is not a build dep
Diffstat (limited to 'stm32-metapac')
-rw-r--r-- | stm32-metapac/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stm32-metapac/Cargo.toml b/stm32-metapac/Cargo.toml index 6c5e47e8..c92c5f00 100644 --- a/stm32-metapac/Cargo.toml +++ b/stm32-metapac/Cargo.toml @@ -7,13 +7,13 @@ resolver = "2" [dependencies] cortex-m = "0.7.2" +cortex-m-rt = { version = "0.6.8", optional = true } [build-dependencies] regex = "1.4.6" chiptool = { git = "https://github.com/embassy-rs/chiptool", rev = "86b77165078065058098e981d49d2dd213b2feba" } serde = { version = "1.0.123", features = [ "derive" ]} serde_yaml = "0.8.15" -cortex-m-rt = { version = "0.6.8", optional = true } [features] rt = ["cortex-m-rt/device"] |