Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

vendor only certain crates or only crates from certain sources #9234

Open
horacimacias opened this issue Mar 3, 2021 · 3 comments
Open

vendor only certain crates or only crates from certain sources #9234

horacimacias opened this issue Mar 3, 2021 · 3 comments
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.

Comments

@horacimacias
Copy link

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 into vendor folder by default and produces something like the following config.toml

[source.crates-io]
replace-with = "vendored-sources"

[source."https://bitbucket.private_repo_name.git"]
git = "https://bitbucket.private_repo_name.git"
tag = "v0.0.205"
replace-with = "vendored-sources"

[source."https://bitbucket.private_repo_name2.git"]
git = "https://bitbucket.private_repo_name2.git"
replace-with = "vendored-sources"

[source.vendored-sources]
directory = "vendor"

From 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 crates

Notes
I'd be happy to contribute if this feature sounds relevant and generic enough.

@horacimacias horacimacias added the C-feature-request Category: proposal for a feature. Before PR, ping rust-lang/cargo if this is not `Feature accepted` label Mar 3, 2021
@weihanglo weihanglo added the S-needs-design Status: Needs someone to work further on the design for the feature or fix. NOT YET accepted. label Jul 18, 2023
@weihanglo
Copy link
Member

See also #12307 for vendoring a specific package.

@yannham
Copy link

yannham commented Sep 14, 2023

In the meantime, is there any workaround? Such as calling cargo vendor but manually curating the result both in Cargo.toml and ./vendor if needed?

@horacimacias
Copy link
Author

if by "manually curating" you mean deleting stuff in vendor that was already downloaded (and updating .cargo/config), this is what I'm doing.
It does work but it's not great as I'm trying to avoid downloading in the first place. Now I'm downloading and deleting which achieves the same but doing some useless download of things I know I'll delete.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
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.
Projects
None yet
Development

No branches or pull requests

4 participants