mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-05 03:18:01 +00:00

<!-- Thank you for contributing to uv! To help us out with reviewing, please consider the following: - Does this pull request include a summary of the change? (See below.) - Does this pull request include a descriptive title? - Does this pull request include references to any relevant issues? --> Closes #4653 ## Summary Adds the tool version to the list command right beside the tool name ``` $ uv tool list black v24.2.0 ``` Following the proposed format discussed in #4653 ## Test Plan `cargo test tool_list` <!-- How was it tested? --> --------- Co-authored-by: Zanie Blue <contact@zanie.dev>
36 lines
976 B
TOML
36 lines
976 B
TOML
[package]
|
|
name = "uv-tool"
|
|
version = "0.0.1"
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
homepage = { workspace = true }
|
|
documentation = { workspace = true }
|
|
repository = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
install-wheel-rs = { workspace = true }
|
|
pep440_rs = { workspace = true }
|
|
pep508_rs = { workspace = true }
|
|
pypi-types = { workspace = true }
|
|
uv-cache = { workspace = true }
|
|
uv-fs = { workspace = true }
|
|
uv-state = { workspace = true }
|
|
uv-python = { workspace = true }
|
|
uv-virtualenv = { workspace = true }
|
|
uv-warnings = { workspace = true }
|
|
uv-installer = { workspace = true }
|
|
|
|
dirs-sys = { workspace = true }
|
|
fs-err = { workspace = true }
|
|
path-slash = { workspace = true }
|
|
pathdiff = { workspace = true }
|
|
serde = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
toml = { workspace = true }
|
|
toml_edit = { workspace = true }
|
|
tracing = { workspace = true }
|