uv
5e7f3d29 - Add `--show-with` to `uv tool list` to list packages included by `--with` (#13264)

Comment changes are shownComment changes are hidden
Commit
76 days ago
Add `--show-with` to `uv tool list` to list packages included by `--with` (#13264) ## Summary Add a `--show-extras` argument to the `uv tool list` cli, to show which extra dependencies were installed with the tool. i.e. ```bash $ uv tool install fastapi --with requests --with typer==0.14 ``` ```bash $ uv tool list --show-extras fastapi v0.115.12 [extras: requests, typer==0.14] - fastapi ``` ## Test Plan Added a new test function based on the others in the same file, with the other arguments tested with the new argument as well.
Author
Parents
  • crates
    • uv-cli/src
      • File
        lib.rs
    • uv
      • src
        • commands/tool
          • File
            list.rs
        • File
          lib.rs
        • File
          settings.rs
      • tests/it
        • File
          tool_install.rs
        • File
          tool_list.rs
  • docs/reference
    • File
      cli.md
Loading