mirror of
https://github.com/astral-sh/uv
synced 2026-01-24 15:00:18 -05:00
Needed to prevent circular dependencies in my toolchain work (#2931). I think this is probably a reasonable change as we move towards persistent configuration too? Unfortunately `BuildIsolation` needs to be in `uv-types` to avoid circular dependencies still. We might be able to resolve that in the future.
33 lines
924 B
TOML
33 lines
924 B
TOML
[package]
|
|
name = "uv-dispatch"
|
|
version = "0.0.1"
|
|
description = "Avoid cyclic crate dependencies between resolver, installer and builder"
|
|
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]
|
|
distribution-types = { workspace = true }
|
|
pep508_rs = { workspace = true }
|
|
uv-build = { workspace = true }
|
|
uv-cache = { workspace = true }
|
|
uv-client = { workspace = true }
|
|
uv-installer = { workspace = true }
|
|
uv-interpreter = { workspace = true }
|
|
uv-resolver = { workspace = true }
|
|
uv-types = { workspace = true }
|
|
uv-configuration = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
futures = { workspace = true }
|
|
itertools = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
tracing = { workspace = true }
|