d3e50a2376
## Summary This PR improves the interaction of `--frozen` such that we reduce the dependency on the `pyproject.toml` and increase the dependency on the `uv.lock`. Specifically, we now read the list of workspace members from the `uv.lock` rather than the `pyproject.toml`, which means we don't need to discover the member `pyproject.toml` files in order to perform a `uv sync --frozen --all-packages`.
56 lines
1.5 KiB
TOML
56 lines
1.5 KiB
TOML
[package]
|
|
name = "uv-workspace"
|
|
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-key = { workspace = true }
|
|
uv-distribution-types = { workspace = true }
|
|
uv-fs = { workspace = true, features = ["tokio", "schemars"] }
|
|
uv-git = { workspace = true }
|
|
uv-macros = { workspace = true }
|
|
uv-normalize = { workspace = true }
|
|
uv-options-metadata = { workspace = true }
|
|
uv-pep440 = { workspace = true }
|
|
uv-pep508 = { workspace = true }
|
|
uv-pypi-types = { workspace = true }
|
|
uv-static = { workspace = true }
|
|
uv-warnings = { workspace = true }
|
|
|
|
fs-err = { workspace = true }
|
|
glob = { workspace = true }
|
|
itertools = { workspace = true }
|
|
owo-colors = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
same-file = { workspace = true }
|
|
schemars = { workspace = true, optional = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true }
|
|
toml = { workspace = true }
|
|
toml_edit = { workspace = true }
|
|
tracing = { workspace = true }
|
|
url = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
anyhow = { workspace = true }
|
|
assert_fs = { version = "1.1.2" }
|
|
insta = { version = "1.40.0", features = ["filters", "json", "redactions"] }
|
|
regex = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
|
|
[package.metadata.cargo-shear]
|
|
ignored = ["uv-options-metadata"]
|