Files
uv/crates/uv-dev/Cargo.toml
T

83 lines
2.8 KiB
TOML
Raw Normal View History

[package]
2024-02-15 11:19:46 -06:00
name = "uv-dev"
2026-01-13 16:55:34 -06:00
version = "0.0.14"
description = "This is an internal component crate of uv"
2024-01-18 17:20:44 -05:00
publish = false
edition = { workspace = true }
rust-version = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
[lints]
workspace = true
[dependencies]
uv-cache = { workspace = true, features = ["clap"] }
uv-cli = { workspace = true }
uv-client = { workspace = true }
uv-configuration = { workspace = true }
uv-distribution-filename = { workspace = true }
uv-distribution-types = { workspace = true }
uv-extract = { workspace = true }
uv-installer = { workspace = true }
uv-macros = { workspace = true }
uv-options-metadata = { workspace = true }
uv-pep508 = { workspace = true }
uv-preview = { workspace = true }
uv-pypi-types = { workspace = true }
uv-python = { workspace = true }
uv-settings = { workspace = true, features = ["schemars"] }
2024-10-14 21:48:13 +00:00
uv-static = { workspace = true }
uv-workspace = { workspace = true, features = ["schemars"] }
2024-02-15 11:19:46 -06:00
# Any dependencies that are exclusively used in `uv-dev` should be listed as non-workspace
# dependencies, to ensure that we're forced to think twice before including them in other crates.
anstream = { workspace = true }
anyhow = { workspace = true }
clap = { workspace = true, features = ["derive", "wrap_help"] }
fs-err = { workspace = true, features = ["tokio"] }
futures = { workspace = true }
itertools = { workspace = true }
markdown = { version = "1.0.0" }
2024-01-08 03:54:57 -05:00
owo-colors = { workspace = true }
poloto = { version = "19.1.2", optional = true }
2024-09-17 06:39:58 -04:00
pretty_assertions = { version = "1.4.1" }
reqwest = { workspace = true, features = ["stream"] }
resvg = { version = "0.29.0", optional = true }
2024-04-17 13:24:41 -04:00
schemars = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = { version = "0.9.34" }
tagu = { version = "0.1.6", optional = true }
tempfile = { workspace = true }
textwrap = { workspace = true }
tokio = { workspace = true }
tokio-util = { workspace = true }
tracing = { workspace = true }
tracing-durations-export = { workspace = true, features = ["plot"] }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
uv-performance-memory-allocator = { path = "../uv-performance-memory-allocator", optional = true }
walkdir = { workspace = true }
2025-02-20 23:28:08 +01:00
[lib]
name = "uv_dev"
2024-08-29 21:44:13 +02:00
[[bin]]
name = "uv-dev"
# We don't want to build the dev CLI by default, so we skip it by requiring an off-by-default feature
required-features = ["dev"]
[features]
default = ["performance", "uv-extract/static"]
2024-08-29 21:44:13 +02:00
# Actually build the dev CLI.
dev = []
performance = ["performance-memory-allocator"]
performance-memory-allocator = ["dep:uv-performance-memory-allocator"]
render = ["poloto", "resvg", "tagu"]
[package.metadata.cargo-shear]
2025-12-15 18:46:35 +01:00
ignored = ["uv-performance-memory-allocator"]