async-tar
async-tar copied to clipboard
A tar archive reading/writing library for async Rust.
Updates the requirements on redox_syscall to permit the latest version. Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger...
in entry.rs:588: ```rust async_std::os::windows::fs::symlink_file(src, dst).await // (Could not find `fs` in `windows`) ```
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 2.1.0 to 3.1.0. Release notes Sourced from codecov/codecov-action's releases. v3.1.0 3.1.0 Features #699 Incorporate xcode arguments for the Codecov uploader Dependencies #694 build(deps-dev): bump @vercel/ncc from 0.33.3...
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. Release notes Sourced from actions/checkout's releases. v3.0.0 Update default runtime to node16 v2.4.0 Convert SSH URLs like org-<ORG_ID>@github.com: to https://github.com/ - pr v2.3.5 Update...
I'm running into trouble because my writer isn't `Send` and `Sync`. This, however, is required to be able to use it in `Builder`. Doing a quick check at the source...
`Builder::finish()` doesn't seem to flush the state of the inner writer. this means the following snippet doesn't work- ```rust use async_compression::futures::write::GzipEncoder; use async_std::{fs::File, path::Path}; use async_tar::Builder; use futures::io::AsyncWrite; async fn...
looking at the code, there's a lot of shared behaviour between the `UstarHeader` and `GnuHeader` types. There's also quite a lot of casting between the tops (which i guess is...
Hi, the tar files needed for the tests aren't included in the crates.io uploads. Please consider including those.
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 2.1.0 to 3.1.4. Release notes Sourced from codecov/codecov-action's releases. 3.1.4 What's Changed build(deps-dev): bump @types/node from 18.15.12 to 18.16.3 by @dependabot in codecov/codecov-action#970 Fix typo in README.md...
Reading the code for `Builder::finish`, it seems like this library does not create an index, is this correct? (in my understanding, tar files usually have an index at the end...