The Rust Cargo.toml
specification file allows for development dependencies section, e.g. [dev-dependencies]
Cargo.toml:
[dev-dependencies]
tempdir = "0.3"
What is the command to fetch and compile those development dependencies?
To be clear, I want to fetch and compile only the [dev-dependencies]
. The Linked questions differ in that they address fetching and compiling all dependencies and then building the application.