mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-04 19:08:04 +00:00

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.
41 lines
1 KiB
TOML
41 lines
1 KiB
TOML
[package]
|
|
name = "uv-virtualenv"
|
|
version = "0.0.4"
|
|
publish = false
|
|
description = "virtualenv creation implemented in rust"
|
|
keywords = ["virtualenv", "venv", "python"]
|
|
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
homepage = { workspace = true }
|
|
documentation = { workspace = true }
|
|
repository = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[[bin]]
|
|
name = "uv-virtualenv"
|
|
required-features = ["cli"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
platform-tags = { workspace = true }
|
|
pypi-types = { workspace = true }
|
|
uv-cache = { workspace = true }
|
|
uv-fs = { workspace = true }
|
|
uv-interpreter = { workspace = true }
|
|
|
|
anstream = { workspace = true }
|
|
cachedir = { workspace = true }
|
|
clap = { workspace = true, features = ["derive"], optional = true }
|
|
directories = { workspace = true }
|
|
fs-err = { workspace = true }
|
|
pathdiff = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true, optional = true }
|
|
|
|
[features]
|
|
cli = ["clap", "tracing-subscriber"]
|