Avoid repeating paths of workspace packages (#2573)

Scott schafer got me the idea: We can avoid repeating the path for
workspaces dependencies everywhere if we declare them in the virtual
package once and treat them as workspace dependencies from there on.
This commit is contained in:
konsti 2024-03-20 21:16:02 +01:00 committed by GitHub
parent 7111fdd637
commit 70e0967dbd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 200 additions and 169 deletions

View file

@ -20,12 +20,12 @@ workspace = true
name = "install_wheel_rs"
[dependencies]
distribution-filename = { path = "../distribution-filename" }
pep440_rs = { path = "../pep440-rs" }
platform-tags = { path = "../platform-tags" }
uv-normalize = { path = "../uv-normalize" }
uv-fs = { path = "../uv-fs" }
pypi-types = { path = "../pypi-types" }
distribution-filename = { workspace = true }
pep440_rs = { workspace = true }
platform-tags = { workspace = true }
uv-normalize = { workspace = true }
uv-fs = { workspace = true }
pypi-types = { workspace = true }
clap = { workspace = true, optional = true, features = ["derive"] }
configparser = { workspace = true }