Open
Description
Problem
Let's say that I'm using
[dependencies]
reqwest = "0.12.5"
axum = "0.7.5"
But I also want to add tokio as a direct dependency, and I want to match the version that axum uses.
Specifying *
as the version could choose either.
Proposed Solution
Something like this
[dependencies]
reqwest = "0.12.5"
axum = "0.7.5"
tokio = "axum"
Notes
No response
Metadata
Metadata
Assignees
Labels
Area: dependency resolution and the resolverArea: Cargo.toml issuesCategory: proposal for a feature. Before PR, ping rust-lang/cargo if this is not `Feature accepted`Status: ❌ blocked on something out of the direct control of the Cargo project, e.g., upstream fixStatus: Needs someone to work further on the design for the feature or fix. NOT YET accepted.