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]
|
2023-11-06 15:06:49 +01:00
|
|
|
distribution-filename = { path = "../distribution-filename" }
|
2023-11-24 18:47:58 +01:00
|
|
|
distribution-types = { path = "../distribution-types" }
|
2023-10-25 22:05:13 +02:00
|
|
|
gourgeist = { path = "../gourgeist" }
|
2023-12-24 19:31:52 +01:00
|
|
|
install-wheel-rs = { path = "../install-wheel-rs" }
|
2024-01-02 12:04:26 +01:00
|
|
|
pep440_rs = { path = "../pep440-rs" }
|
2023-10-25 22:05:13 +02:00
|
|
|
pep508_rs = { path = "../pep508-rs" }
|
|
|
|
|
platform-host = { path = "../platform-host" }
|
|
|
|
|
platform-tags = { path = "../platform-tags" }
|
2024-02-15 11:19:46 -06:00
|
|
|
uv-build = { path = "../uv-build" }
|
|
|
|
|
uv-cache = { path = "../uv-cache", features = ["clap"] }
|
|
|
|
|
uv-client = { path = "../uv-client" }
|
|
|
|
|
uv-dispatch = { path = "../uv-dispatch" }
|
|
|
|
|
uv-distribution = { path = "../uv-distribution" }
|
|
|
|
|
uv-installer = { path = "../uv-installer" }
|
|
|
|
|
uv-interpreter = { path = "../uv-interpreter" }
|
|
|
|
|
uv-normalize = { path = "../uv-normalize" }
|
|
|
|
|
uv-resolver = { path = "../uv-resolver" }
|
2023-11-06 10:19:49 -08:00
|
|
|
pypi-types = { path = "../pypi-types" }
|
2024-02-15 11:19:46 -06:00
|
|
|
uv-traits = { path = "../uv-traits" }
|
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 }
|
2023-12-18 15:06:54 +01:00
|
|
|
chrono = { workspace = true }
|
2023-10-25 22:05:13 +02:00
|
|
|
clap = { workspace = true, features = ["derive"] }
|
2024-01-08 16:20:38 +01:00
|
|
|
fs-err = { workspace = true, features = ["tokio"] }
|
2023-10-25 22:05:13 +02:00
|
|
|
futures = { workspace = true }
|
2023-10-26 14:03:59 +02:00
|
|
|
indicatif = { workspace = true }
|
2023-10-25 22:05:13 +02:00
|
|
|
itertools = { workspace = true }
|
2024-01-08 03:54:57 -05:00
|
|
|
owo-colors = { workspace = true }
|
2023-11-17 19:16:24 +01:00
|
|
|
petgraph = { workspace = true }
|
2024-01-31 12:11:52 -08:00
|
|
|
poloto = { version = "19.1.2" }
|
|
|
|
|
resvg = { version = "0.29.0" }
|
2023-12-24 19:31:52 +01:00
|
|
|
rustc-hash = { workspace = true }
|
2024-01-31 12:11:52 -08:00
|
|
|
serde = { workspace = true }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
tagu = { version = "0.1.6" }
|
2023-10-25 22:05:13 +02:00
|
|
|
tempfile = { workspace = true }
|
|
|
|
|
tokio = { workspace = true }
|
|
|
|
|
tracing = { workspace = true }
|
2024-01-30 12:03:24 +01:00
|
|
|
tracing-durations-export = { workspace = true, features = ["plot"] }
|
2023-10-26 14:03:59 +02:00
|
|
|
tracing-indicatif = { workspace = true }
|
2023-10-25 22:05:13 +02:00
|
|
|
tracing-subscriber = { workspace = true }
|
2023-11-06 15:06:49 +01:00
|
|
|
url = { workspace = true }
|
2024-01-08 03:54:57 -05:00
|
|
|
which = { 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" }
|