diff --git a/Cargo.toml b/Cargo.toml index bbbb8563f5b28..9ee8142e23e76 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,10 @@ node-cli = { path = "bin/node/cli" } # Exists here to be backwards compatible and to support `cargo run` in the workspace. # # Just uses the `node-cli` main binary. `node-cli` itself also again exposes the node as -# `substrate-node`. Using `node-cli` directly you can also enable features. +# `substrate-node`. + +# `cargo run` on its own doesn't support features. To use features you must explicitly use +# `node-cli` in your command, e.g. `cargo run -p node-cli --features try-runtime ...`. [[bin]] name = "substrate" path = "bin/node/cli/bin/main.rs"