vendor only certain crates or only crates from certain sources #9234
Labels
C-feature-request
Category: proposal for a feature. Before PR, ping rust-lang/cargo if this is not `Feature accepted`
Command-vendor
S-needs-design
Status: Needs someone to work further on the design for the feature or fix. NOT YET accepted.
Describe the problem you are trying to solve
I'm trying to use
cargo vendor
to easily share files/projects and be able to perform remote builds.Some of my project dependencies are private (hosted in private git repos) while others are in public repositories, e.g. crates.io
Running
cargo vendor
downloads everything intovendor
folder by default and produces something like the following config.tomlFrom a working perspective this approach works, but is not great as the vendor folder becomes slower to synchronise and the remote server I'm sending files to can already access crates.io (but not https://bitbucket.private_repo_name.git or https://bitbucket.private_repo_name2.git which is why I'm vendoring)
Describe the solution you'd like
It would be great to tell
cargo vendor
what to vendor and ignore everything else, or tell it what not to vendor and vendor everything else.The
vendor
directory would only contain specific crates (private in my case), and the config.toml would only have "source." entries for those vendores cratesNotes
I'd be happy to contribute if this feature sounds relevant and generic enough.
The text was updated successfully, but these errors were encountered: