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
|
|
|
distribution-filename = { workspace = true }
|
|
|
|
|
distribution-types = { workspace = true }
|
2024-04-15 10:49:41 +02:00
|
|
|
install-wheel-rs = { workspace = true }
|
2024-03-20 21:16:02 +01:00
|
|
|
pep508_rs = { workspace = true }
|
2024-05-23 21:52:47 +02:00
|
|
|
pypi-types = { workspace = true }
|
2024-03-20 21:16:02 +01:00
|
|
|
uv-build = { workspace = true }
|
|
|
|
|
uv-cache = { workspace = true, features = ["clap"] }
|
|
|
|
|
uv-client = { workspace = true }
|
2024-04-10 11:22:41 -05:00
|
|
|
uv-configuration = { workspace = true }
|
2024-03-20 21:16:02 +01:00
|
|
|
uv-dispatch = { workspace = true }
|
2024-05-31 22:44:42 -04:00
|
|
|
uv-distribution = { workspace = true, features = ["schemars"] }
|
|
|
|
|
uv-git = { workspace = true }
|
2024-03-20 21:16:02 +01:00
|
|
|
uv-installer = { workspace = true }
|
|
|
|
|
uv-resolver = { workspace = true }
|
2024-06-13 18:26:20 -07:00
|
|
|
uv-settings = { workspace = true, features = ["schemars"] }
|
2024-07-03 08:44:29 -04:00
|
|
|
uv-python = { workspace = true }
|
2024-03-26 15:39:43 -05:00
|
|
|
uv-types = { workspace = true }
|
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-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-04-17 13:24:41 -04:00
|
|
|
pretty_assertions = { version = "1.4.0" }
|
2024-05-23 23:00:53 -04:00
|
|
|
resvg = { version = "0.29.0", optional = true }
|
2023-12-24 19:31:52 +01:00
|
|
|
rustc-hash = { workspace = 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 }
|
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 }
|
2023-11-10 14:48:59 -05:00
|
|
|
|
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
2024-01-08 03:54:57 -05:00
|
|
|
mimalloc = { version = "0.1.39" }
|
2023-11-10 14:48:59 -05:00
|
|
|
|
|
|
|
|
[target.'cfg(all(not(target_os = "windows"), not(target_os = "openbsd"), any(target_arch = "x86_64", target_arch = "aarch64", target_arch = "powerpc64")))'.dependencies]
|
2024-01-08 03:54:57 -05:00
|
|
|
tikv-jemallocator = { version = "0.5.4" }
|
2024-05-23 23:00:53 -04:00
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = []
|
|
|
|
|
render = ["poloto", "resvg", "tagu"]
|