mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 13:25:00 +00:00

Previously, uv-auth would fail to compile due to a missing process feature. I chose to make all tokio features we use top level features, so we can share the tokio cache between all test invocations.
31 lines
897 B
TOML
31 lines
897 B
TOML
[package]
|
|
name = "uv-extract"
|
|
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]
|
|
pypi-types = { workspace = true }
|
|
|
|
async-compression = { workspace = true, features = ["bzip2", "gzip", "zstd"] }
|
|
async_zip = { workspace = true, features = ["tokio"] }
|
|
fs-err = { workspace = true, features = ["tokio"] }
|
|
futures = { workspace = true }
|
|
md-5.workspace = true
|
|
rayon = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-tar = { workspace = true }
|
|
tokio-util = { workspace = true, features = ["compat"] }
|
|
tracing = { workspace = true }
|
|
zip = { workspace = true }
|