aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Kröger <[email protected]>2021-08-09 16:19:00 +0200
committerDario Nieuwenhuis <[email protected]>2021-08-18 21:58:50 +0200
commit0c3bede64f990daafb87ae8841261b754c885ddb (patch)
tree3606c8e0588a67faef08d53f9b4adf6cfd048192
parentdacf75d911058dd09d2a825a5b23d758f1f7a92d (diff)
bxcan: Make `bxcan` a hard dependency
There seems no way to enable a optional dependency from build.rs or features passed through the command line.
-rw-r--r--embassy-stm32/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-stm32/Cargo.toml b/embassy-stm32/Cargo.toml
index dc09b8e87..e0c16b46c 100644
--- a/embassy-stm32/Cargo.toml
+++ b/embassy-stm32/Cargo.toml
@@ -26,7 +26,7 @@ bare-metal = "1.0.0"
26atomic-polyfill = "0.1.3" 26atomic-polyfill = "0.1.3"
27stm32-metapac = { version = "0.1.0", path = "../stm32-metapac", features = ["rt"] } 27stm32-metapac = { version = "0.1.0", path = "../stm32-metapac", features = ["rt"] }
28vcell = { version = "0.1.3", optional = true } 28vcell = { version = "0.1.3", optional = true }
29bxcan = { version = "0.5.1" } # TODO: , optional = true } 29bxcan = { version = "0.5.1" }
30 30
31cfg-if = "1.0.0" 31cfg-if = "1.0.0"
32 32