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

We have some shared utilities beyond `puffin-build` and `puffin-distribution`, and further, I want to be able to access the sdist archive extraction logic from `puffin-distribution`. This is really generic, so moving into its own crate.
22 lines
531 B
TOML
22 lines
531 B
TOML
[package]
|
|
name = "puffin-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]
|
|
flate2 = { workspace = true }
|
|
fs-err = { workspace = true }
|
|
rayon = { workspace = true }
|
|
tar = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true }
|
|
zip = { workspace = true }
|