Files
uv/crates/uv-extract/src/lib.rs
T
Charlie Marsh 7b43baf251 Use Astral-maintained tokio-tar fork (#11174)
## 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).
2025-02-03 17:51:35 +00:00

9 lines
103 B
Rust

pub use error::Error;
pub use sync::*;
mod error;
pub mod hash;
pub mod stream;
mod sync;
mod vendor;