rrajpaul1
Results
3
comments of
rrajpaul1
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...
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