tar 0.4.43

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"

[[example]]
name = "extract_file"
path = "examples/extract_file.rs"

[[example]]
name = "list"
path = "examples/list.rs"

[[example]]
name = "raw_list"
path = "examples/raw_list.rs"

[[example]]
name = "write"
path = "examples/write.rs"

[features]
default = ["xattr"]

[lib]
name = "tar"
path = "src/lib.rs"

[package]
authors = ["Alex Crichton <alex@alexcrichton.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = """
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 = "https://docs.rs/tar"
edition = "2021"
exclude = ["tests/archives/*"]
homepage = "https://github.com/alexcrichton/tar-rs"
keywords = ["tar", "tarfile", "encoding"]
license = "MIT OR Apache-2.0"
name = "tar"
readme = "README.md"
repository = "https://github.com/alexcrichton/tar-rs"
version = "0.4.43"

[target."cfg(unix)".dependencies.libc]
version = "0.2"

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

[[test]]
name = "all"
path = "tests/all.rs"

[[test]]
name = "entry"
path = "tests/entry.rs"