9 unstable releases
0.5.0 | Sep 2, 2024 |
---|---|
0.4.2 | Aug 24, 2021 |
0.4.1 | Jul 29, 2021 |
0.3.0 | Jul 29, 2020 |
0.1.1 | Dec 24, 2019 |
#30 in Compression
26,002 downloads per month
Used in 16 crates
(10 directly)
150KB
3K
SLoC
async-tar
Based on the great tar-rs.
Reading an archive
use async_std::io::stdin;
use async_std::prelude::*;
use async_tar::Archive;
fn main() {
async_std::task::block_on(async {
let mut ar = Archive::new(stdin());
let mut entries = ar.entries().unwrap();
while let Some(file) = entries.next().await {
let f = file.unwrap();
println!("{}", f.path().unwrap().display());
}
});
}
Writing an archive
use async_std::fs::File;
use async_tar::Builder;
fn main() {
async_std::task::block_on(async {
let file = File::create("foo.tar").await.unwrap();
let mut a = Builder::new(file);
a.append_path("README.md").await.unwrap();
a.append_file("lib.rs", &mut File::open("src/lib.rs").await.unwrap())
.await
.unwrap();
});
}
MSRV
Minimal stable rust version: 1.63
An increase to the MSRV is accompanied by a minor version bump
License
This project is licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Dependencies
~5–14MB
~184K SLoC