-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Open
Labels
A-directory-sourceArea: directory sources (vendoring)Area: directory sources (vendoring)C-feature-requestCategory: proposal for a feature. Before PR, ping rust-lang/cargo if this is not `Feature accepted`Category: proposal for a feature. Before PR, ping rust-lang/cargo if this is not `Feature accepted`Command-vendorS-triageStatus: This issue is waiting on initial triage.Status: This issue is waiting on initial triage.
Description
Perhaps I'm missing something, but there is no easy way to update vendored dependencies. cargo update
would lead to the "failed to select a version for the requirement..." error, so I'm doing the following:
- remove
.cargo/config.toml
- use
cargo update
- use
cargo vendor
again
It would be nice to have a separate command or an additional option for the cargo vendor
(or cargo update
) command that would allow to update vendored dependencies. Ideally, that new command should support the --package
options as cargo update
does.
jeffparsons, repi, Skgland and kamulos
Metadata
Metadata
Assignees
Labels
A-directory-sourceArea: directory sources (vendoring)Area: directory sources (vendoring)C-feature-requestCategory: proposal for a feature. Before PR, ping rust-lang/cargo if this is not `Feature accepted`Category: proposal for a feature. Before PR, ping rust-lang/cargo if this is not `Feature accepted`Command-vendorS-triageStatus: This issue is waiting on initial triage.Status: This issue is waiting on initial triage.
Type
Projects
Milestone
Relationships
Development
Select code repository
Activity
cargo add
can add dependencies from crate.io registry even when using vendor or different registry #15019