mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-04 02:48:17 +00:00

## Summary I shipped one security fix here along with several significant performance improvements for large TAR files: - https://github.com/astral-sh/tokio-tar/pull/2 - https://github.com/astral-sh/tokio-tar/pull/4 - https://github.com/astral-sh/tokio-tar/pull/5 I also PR'd the security fix to `edera-dev` (https://github.com/edera-dev/tokio-tar/pull/4).
45 lines
1.1 KiB
TOML
45 lines
1.1 KiB
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 }
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
uv-configuration = { workspace = true }
|
|
uv-distribution-filename = { workspace = true }
|
|
uv-pypi-types = { workspace = true }
|
|
|
|
astral-tokio-tar = { workspace = true }
|
|
async-compression = { workspace = true, features = ["bzip2", "gzip", "zstd", "xz"] }
|
|
async_zip = { workspace = true }
|
|
fs-err = { workspace = true, features = ["tokio"] }
|
|
futures = { workspace = true }
|
|
md-5 = { workspace = true }
|
|
rayon = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-util = { workspace = true, features = ["compat"] }
|
|
tracing = { workspace = true }
|
|
xz2 = { workspace = true }
|
|
zip = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
performance = ["xz2/static"]
|
|
|
|
[package.metadata.cargo-shear]
|
|
ignored = ["xz2"]
|