tokio_tar/
lib.rs

1//! A library for reading and writing TAR archives in an async fashion.
2//!
3//! This library provides utilities necessary to manage [TAR archives][1]
4//! abstracted over a reader or writer. Great strides are taken to ensure that
5//! an archive is never required to be fully resident in memory, and all objects
6//! provide largely a streaming interface to read bytes from.
7//!
8//! [1]: http://en.wikipedia.org/wiki/Tar_%28computing%29
9
10// More docs about the detailed tar format can also be found here:
11// http://www.freebsd.org/cgi/man.cgi?query=tar&sektion=5&manpath=FreeBSD+8-current
12
13// NB: some of the coding patterns and idioms here may seem a little strange.
14//     This is currently attempting to expose a super generic interface while
15//     also not forcing clients to codegen the entire crate each time they use
16//     it. To that end lots of work is done to ensure that concrete
17//     implementations are all found in this crate and the generic functions are
18//     all just super thin wrappers (e.g. easy to codegen).
19
20#![deny(missing_docs)]
21#![deny(clippy::print_stderr, clippy::print_stdout)]
22
23use std::io::Error;
24
25pub use crate::{
26    archive::{Archive, ArchiveBuilder, Entries},
27    builder::Builder,
28    entry::{Entry, Unpacked},
29    entry_type::EntryType,
30    error::TarError,
31    header::{
32        GnuExtSparseHeader, GnuHeader, GnuSparseHeader, Header, HeaderMode, OldHeader, UstarHeader,
33    },
34    pax::{PaxExtension, PaxExtensions},
35};
36
37mod archive;
38mod builder;
39mod entry;
40mod entry_type;
41mod error;
42mod fs;
43mod header;
44mod pax;
45
46fn other(msg: &str) -> Error {
47    Error::other(msg)
48}