volks73 / cargo-wix

A cargo subcommand to build Windows installers for rust projects using the WiX Toolset
https://volks73.github.io/cargo-wix
Apache License 2.0
306 stars 25 forks source link

Don't get deps when running cargo-metadata #206

Closed roblabla closed 1 year ago

roblabla commented 1 year ago

Cargo-metadata would take a long time due to downloading all the dependencies of the project. This is not actually necessary, since we only care about the metadata of the local packages in cargo-wix. By passing the --no-deps argument to cargo metadata, we avoid this behavior.