Support --with-editable in uv tool install (#8472)

## Summary

Closes https://github.com/astral-sh/uv/issues/7528

## Test Plan

`cargo test`

---------

Co-authored-by: Zanie Blue <contact@zanie.dev>
This commit is contained in:
Ahmed Ilyas
2024-10-23 02:06:33 +02:00
committed by GitHub
parent 21b9254949
commit 82df00a917
6 changed files with 61 additions and 1 deletions
+4
View File
@@ -3514,6 +3514,10 @@ pub struct ToolInstallArgs {
#[arg(short, long)]
pub editable: bool,
/// Include the given packages as editables.
#[arg(long, value_delimiter = ',')]
pub with_editable: Vec<String>,
/// The package to install commands from.
///
/// This option is provided for parity with `uv tool run`, but is redundant with `package`.