tar 0.4.30

A Rust implementation of a 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.
Documentation
[dependencies.filetime]
version = "0.2.8"
[dev-dependencies.tempfile]
version = "3"

[features]
default = ["xattr"]

[package]
authors = ["Alex Crichton <alex@alexcrichton.com>"]
description = "A Rust implementation of a TAR file reader and writer. This library does not\ncurrently handle compression, but it is abstract over all I/O readers and\nwriters. Additionally, great lengths are taken to ensure that the entire\ncontents are never required to be entirely resident in memory all at once.\n"
documentation = "https://docs.rs/tar"
edition = "2018"
exclude = ["tests/archives/*"]
homepage = "https://github.com/alexcrichton/tar-rs"
keywords = ["tar", "tarfile", "encoding"]
license = "MIT/Apache-2.0"
name = "tar"
readme = "README.md"
repository = "https://github.com/alexcrichton/tar-rs"
version = "0.4.30"
[target."cfg(target_os = \"redox\")".dependencies.redox_syscall]
version = "0.1"
[target."cfg(unix)".dependencies.libc]
version = "0.2"

[target."cfg(unix)".dependencies.xattr]
optional = true
version = "0.2"