Check why and how a dependency in your workspace gets enabled. This is useful in cases where you encounter weird build errors which are caused by unintentional inclusion of dependencies or features.
bash
cargo install feature
Using substrate as example to find out how node-cli
depends on pallet-proxy
:
bash
feature trace --manifest-path substrate/Cargo.toml node-cli snow
output:
pre
[INFO feature] Using manifest "../substrate/Cargo.toml"
[INFO feature] Calculating shortest path from 'node-cli' to 'snow'
node-cli -> try-runtime-cli -> substrate-rpc-client -> sc-rpc-api -> sc-chain-spec -> sc-telemetry -> libp2p -> libp2p-webrtc -> libp2p-noise -> snow
to
shortest_path
function