mirror of
https://github.com/astral-sh/uv
synced 2026-01-22 22:10:11 -05:00
## Summary This ended up being more involved than expected. The gist is that we setup all the packages we want to reinstall upfront (they're passed in on the command-line); but at that point, we don't have names for all the packages that the user has specified. (Consider, e.g., `uv pip install .` -- we don't have a name for `.`, so we can't add it to the list of `Reinstall` packages.) Now, `Reinstall` also accepts paths, so we can augment `Reinstall` based on the user-provided paths. Closes #12038.
41 lines
1.2 KiB
TOML
41 lines
1.2 KiB
TOML
[package]
|
|
name = "uv-cache"
|
|
version = "0.0.1"
|
|
description = "Generate stable hash digests across versions and platforms."
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
homepage = { workspace = true }
|
|
documentation = { workspace = true }
|
|
repository = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
uv-cache-info = { workspace = true }
|
|
uv-cache-key = { workspace = true }
|
|
uv-dirs = { workspace = true }
|
|
uv-distribution-filename = { workspace = true }
|
|
uv-distribution-types = { workspace = true }
|
|
uv-fs = { workspace = true, features = ["tokio"] }
|
|
uv-normalize = { workspace = true }
|
|
uv-pypi-types = { workspace = true }
|
|
uv-static = { workspace = true }
|
|
|
|
clap = { workspace = true, features = ["derive", "env"], optional = true }
|
|
fs-err = { workspace = true, features = ["tokio"] }
|
|
nanoid = { workspace = true }
|
|
rmp-serde = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
same-file = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
tempfile = { workspace = true }
|
|
tracing = { workspace = true }
|
|
url = { workspace = true }
|
|
walkdir = { workspace = true }
|