Open rrajpaul1 opened 8 months ago
I tried adding below to cargo.toml
[features]
default = ["v2"]
v2 = ["microbit-v2"]
error: failed to parse manifest
Caused by: feature v2
includes microbit-v2
which is neither dependency nor another feature
fixed the issue by adding microbit-v2 = { version = "0.13.0", optional = true } and keeping the below section
[features] default = ["v2"] v2 = ["microbit-v2"]
Issue fixed as stated above
I am getting the above error for 05-led-roulette when running cargo embed --feature v2 --target thumbv7em-non-eabihf