mirror of
https://github.com/astral-sh/uv
synced 2026-01-26 16:00:14 -05:00
## Summary After #9524, I noticed two other dependencies were misaligned. Since the previous PR has been merged, I was thinking I could submit those two misses. Of course, open to any comments/decline! Thanks!! 🙂 ## Test Plan All units tests are still passing on my side. Let's see with the pull-request CI again 😄
66 lines
1.8 KiB
TOML
66 lines
1.8 KiB
TOML
[package]
|
|
name = "uv-distribution"
|
|
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 }
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
uv-cache = { workspace = true }
|
|
uv-cache-info = { workspace = true }
|
|
uv-cache-key = { workspace = true }
|
|
uv-client = { workspace = true }
|
|
uv-configuration = { workspace = true }
|
|
uv-distribution-filename = { workspace = true }
|
|
uv-distribution-types = { workspace = true }
|
|
uv-extract = { workspace = true }
|
|
uv-fs = { workspace = true, features = ["tokio"] }
|
|
uv-git = { workspace = true }
|
|
uv-metadata = { workspace = true }
|
|
uv-normalize = { workspace = true }
|
|
uv-pep440 = { workspace = true }
|
|
uv-pep508 = { workspace = true }
|
|
uv-platform-tags = { workspace = true }
|
|
uv-pypi-types = { workspace = true }
|
|
uv-types = { workspace = true }
|
|
uv-warnings = { workspace = true }
|
|
uv-workspace = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
either = { workspace = true }
|
|
fs-err = { workspace = true }
|
|
futures = { workspace = true }
|
|
nanoid = { workspace = true }
|
|
owo-colors = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
reqwest-middleware = { workspace = true }
|
|
rmp-serde = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
tempfile = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-util = { workspace = true, features = ["compat"] }
|
|
tracing = { workspace = true }
|
|
url = { workspace = true }
|
|
walkdir = { workspace = true }
|
|
zip = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
indoc = { workspace = true }
|
|
insta = { version = "1.40.0", features = ["filters", "json", "redactions"] }
|
|
|
|
[features]
|
|
default = []
|
|
performance = ["uv-extract/performance"]
|