mirror of
https://github.com/astral-sh/uv
synced 2026-01-25 07:20:10 -05:00
Follow-up to #2086: Don't use timeouts for the entire workers, but only for the section that's about communicating with the (potentially broken) `python` subprocess. I've also raised the timeout to 60s.
51 lines
1.7 KiB
TOML
51 lines
1.7 KiB
TOML
[package]
|
|
name = "uv-installer"
|
|
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]
|
|
distribution-filename = { path = "../distribution-filename" }
|
|
distribution-types = { path = "../distribution-types" }
|
|
install-wheel-rs = { path = "../install-wheel-rs", default-features = false }
|
|
once-map = { path = "../once-map" }
|
|
pep440_rs = { path = "../pep440-rs" }
|
|
pep508_rs = { path = "../pep508-rs" }
|
|
platform-tags = { path = "../platform-tags" }
|
|
pypi-types = { path = "../pypi-types" }
|
|
requirements-txt = { path = "../requirements-txt" }
|
|
uv-cache = { path = "../uv-cache" }
|
|
uv-client = { path = "../uv-client" }
|
|
uv-distribution = { path = "../uv-distribution" }
|
|
uv-extract = { path = "../uv-extract" }
|
|
uv-fs = { path = "../uv-fs" }
|
|
uv-git = { path = "../uv-git", features = ["vendored-openssl"] }
|
|
uv-interpreter = { path = "../uv-interpreter" }
|
|
uv-normalize = { path = "../uv-normalize" }
|
|
uv-traits = { path = "../uv-traits" }
|
|
uv-warnings = { path = "../uv-warnings" }
|
|
|
|
anyhow = { workspace = true }
|
|
async-channel = { workspace = true }
|
|
fs-err = { workspace = true }
|
|
futures = { workspace = true }
|
|
pyproject-toml = { workspace = true }
|
|
rayon = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
serde = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = ["process"] }
|
|
toml = { workspace = true }
|
|
tracing = { workspace = true }
|
|
url = { workspace = true }
|
|
walkdir = { workspace = true }
|