Respect resolver settings in uv remove (#4930)

## Summary

Closes https://github.com/astral-sh/uv/issues/4925
This commit is contained in:
Charlie Marsh 2024-07-09 10:46:31 -07:00 committed by GitHub
parent 5f20bdb2ee
commit 92290d8dcb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 32 additions and 15 deletions

View file

@ -1946,6 +1946,15 @@ pub struct RemoveArgs {
#[arg(long, conflicts_with("dev"))]
pub optional: Option<ExtraName>,
#[command(flatten)]
pub installer: ResolverInstallerArgs,
#[command(flatten)]
pub build: BuildArgs,
#[command(flatten)]
pub refresh: RefreshArgs,
/// Remove the dependency from a specific package in the workspace.
#[arg(long, conflicts_with = "isolated")]
pub package: Option<PackageName>,