#tar-archive #tar #reader-writer #async-io #file-reader #encoding

tokio-tar

A Rust implementation of an async TAR file reader and writer. This library does not currently handle compression, but it is abstract over all I/O readers and writers. Additionally, great lengths are taken to ensure that the entire contents are never required to be entirely resident in memory all at once.

4 releases (2 breaking)

0.3.1 Jul 14, 2023
0.3.0 May 18, 2021
0.2.0 Mar 15, 2020
0.1.0 Jan 9, 2020

#75 in Parser implementations

Download history 12728/week @ 2023-12-16 3839/week @ 2023-12-23 6151/week @ 2023-12-30 8104/week @ 2024-01-06 8456/week @ 2024-01-13 10637/week @ 2024-01-20 11212/week @ 2024-01-27 14104/week @ 2024-02-03 15414/week @ 2024-02-10 13926/week @ 2024-02-17 12979/week @ 2024-02-24 14865/week @ 2024-03-02 17485/week @ 2024-03-09 17810/week @ 2024-03-16 19671/week @ 2024-03-23 18205/week @ 2024-03-30

75,375 downloads per month
Used in 33 crates (24 directly)

MIT/Apache

150KB
3K SLoC

tokio-tar

A tar archive reading/writing library for async Rust.


Based on the great tar-rs.

Reading an archive

use tokio::io::stdin;
use tokio::prelude::*;

use tokio_tar::Archive;

fn main() {
    tokio::runtime::Runtime::new().unwrap().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 tokio::fs::File;
use tokio_tar::Builder;

fn main() {
    tokio::runtime::Runtime::new().unwrap().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();
    });
}

License

This project is licensed under either of

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

~4–15MB
~169K SLoC