2023-10-25 22:05:13 +02:00
|
|
|
[package]
|
2024-02-15 11:19:46 -06:00
|
|
|
name = "uv-dev"
|
2023-10-25 22:05:13 +02:00
|
|
|
version = "0.0.1"
|
|
|
|
|
description = "Build wheels from source distributions"
|
2024-01-18 17:20:44 -05:00
|
|
|
publish = false
|
|
|
|
|
|
2023-10-25 22:05:13 +02:00
|
|
|
edition = { workspace = true }
|
|
|
|
|
rust-version = { workspace = true }
|
|
|
|
|
homepage = { workspace = true }
|
|
|
|
|
documentation = { workspace = true }
|
|
|
|
|
repository = { workspace = true }
|
|
|
|
|
authors = { workspace = true }
|
|
|
|
|
license = { workspace = true }
|
|
|
|
|
|
2023-11-22 15:10:27 +00:00
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
2023-10-25 22:05:13 +02:00
|
|
|
[dependencies]
|
2024-03-20 21:16:02 +01:00
|
|
|
uv-cache = { workspace = true, features = ["clap"] }
|
2024-08-01 11:04:16 -05:00
|
|
|
uv-cli = { workspace = true }
|
2024-03-20 21:16:02 +01:00
|
|
|
uv-client = { workspace = true }
|
2024-10-01 20:15:32 -04:00
|
|
|
uv-distribution-filename = { workspace = true }
|
|
|
|
|
uv-distribution-types = { workspace = true }
|
2024-03-20 21:16:02 +01:00
|
|
|
uv-installer = { workspace = true }
|
2024-07-15 15:48:40 -04:00
|
|
|
uv-macros = { workspace = true }
|
|
|
|
|
uv-options-metadata = { workspace = true }
|
2024-10-01 20:15:32 -04:00
|
|
|
uv-pep508 = { workspace = true }
|
|
|
|
|
uv-pypi-types = { workspace = true }
|
2024-07-15 15:48:40 -04:00
|
|
|
uv-python = { workspace = true }
|
2024-06-13 18:26:20 -07:00
|
|
|
uv-settings = { workspace = true, features = ["schemars"] }
|
2024-10-14 21:48:13 +00:00
|
|
|
uv-static = { workspace = true }
|
2024-07-19 22:15:32 -04:00
|
|
|
uv-workspace = { workspace = true, features = ["schemars"] }
|
2023-10-25 22:05:13 +02:00
|
|
|
|
2024-02-15 11:19:46 -06:00
|
|
|
# Any dependencies that are exclusively used in `uv-dev` should be listed as non-workspace
|
2024-01-31 12:11:52 -08:00
|
|
|
# dependencies, to ensure that we're forced to think twice before including them in other crates.
|
2023-11-13 12:00:12 -08:00
|
|
|
anstream = { workspace = true }
|
2023-10-25 22:05:13 +02:00
|
|
|
anyhow = { workspace = true }
|
2024-04-16 13:54:40 +01:00
|
|
|
clap = { workspace = true, features = ["derive", "wrap_help"] }
|
2024-01-08 16:20:38 +01:00
|
|
|
fs-err = { workspace = true, features = ["tokio"] }
|
2024-07-15 15:48:40 -04:00
|
|
|
itertools = { workspace = true }
|
2024-09-04 11:23:46 -04:00
|
|
|
markdown = { version = "0.3.0" }
|
2024-01-08 03:54:57 -05:00
|
|
|
owo-colors = { workspace = true }
|
2024-05-23 23:00:53 -04:00
|
|
|
poloto = { version = "19.1.2", optional = true }
|
2024-09-17 06:39:58 -04:00
|
|
|
pretty_assertions = { version = "1.4.1" }
|
2024-05-23 23:00:53 -04:00
|
|
|
resvg = { version = "0.29.0", optional = true }
|
2024-04-17 13:24:41 -04:00
|
|
|
schemars = { workspace = true }
|
2024-01-31 12:11:52 -08:00
|
|
|
serde = { workspace = true }
|
|
|
|
|
serde_json = { workspace = true }
|
2024-05-23 23:00:53 -04:00
|
|
|
tagu = { version = "0.1.6", optional = true }
|
2024-07-15 15:48:40 -04:00
|
|
|
textwrap = { workspace = true }
|
2023-10-25 22:05:13 +02:00
|
|
|
tokio = { workspace = true }
|
|
|
|
|
tracing = { workspace = true }
|
2024-01-30 12:03:24 +01:00
|
|
|
tracing-durations-export = { workspace = true, features = ["plot"] }
|
2023-10-25 22:05:13 +02:00
|
|
|
tracing-subscriber = { workspace = true }
|
2024-03-05 04:35:24 +01:00
|
|
|
walkdir = { workspace = true }
|
2024-09-25 17:41:40 +02:00
|
|
|
uv-performance-memory-allocator = { path = "../uv-performance-memory-allocator", optional = true }
|
2024-05-23 23:00:53 -04:00
|
|
|
|
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"]
|
|
|
|
|
|
2024-05-23 23:00:53 -04:00
|
|
|
[features]
|
2024-09-25 17:41:40 +02:00
|
|
|
default = ["performance"]
|
2024-08-29 21:44:13 +02:00
|
|
|
# Actually build the dev CLI.
|
|
|
|
|
dev = []
|
2024-09-25 17:41:40 +02:00
|
|
|
performance = ["dep:uv-performance-memory-allocator"]
|
2024-05-23 23:00:53 -04:00
|
|
|
render = ["poloto", "resvg", "tagu"]
|
2024-09-25 17:41:40 +02:00
|
|
|
|
|
|
|
|
[package.metadata.cargo-shear]
|
|
|
|
|
ignored = ["flate2", "uv-performance-memory-allocator", "uv-performance-flate2-backend"]
|