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

## Summary Adds `--config-setting` / `-C` (with a `--config-settings` alias for convenience) to the CLI. Closes https://github.com/astral-sh/uv/issues/1460.
31 lines
867 B
TOML
31 lines
867 B
TOML
[package]
|
|
name = "uv-traits"
|
|
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 }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
clap = { workspace = true, optional = true }
|
|
distribution-types = { path = "../distribution-types" }
|
|
once-map = { path = "../once-map" }
|
|
pep508_rs = { path = "../pep508-rs" }
|
|
uv-cache = { path = "../uv-cache" }
|
|
uv-interpreter = { path = "../uv-interpreter" }
|
|
uv-normalize = { path = "../uv-normalize" }
|
|
|
|
anyhow = { workspace = true }
|
|
serde = { workspace = true, optional = true }
|
|
serde_json = { workspace = true, optional = true }
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
|
|
[features]
|
|
default = []
|
|
serde = ["dep:serde", "dep:serde_json"]
|