zed-async-tar 0.5.0-zed

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.
Documentation
[dependencies.async-std]
features = ["unstable"]
version = "1.12.0"

[dependencies.filetime]
version = "0.2.8"

[dependencies.pin-project]
version = "1.0.8"

[dev-dependencies.async-std]
features = ["unstable", "attributes"]
version = "1.12.0"

[dev-dependencies.static_assertions]
version = "1.1.0"

[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 = "zed_async_tar"
path = "src/lib.rs"

[package]
authors = ["dignifiedquire <me@dignifiequire.com>", "Alex Crichton <alex@alexcrichton.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = """
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.
"""
documentation = "https://docs.rs/async-tar"
edition = "2018"
exclude = ["tests/archives/*"]
homepage = "https://github.com/dignifiedquire/async-tar"
keywords = ["tar", "tarfile", "encoding"]
license = "MIT/Apache-2.0"
name = "zed-async-tar"
readme = "README.md"
repository = "https://github.com/dignifiedquire/async-tar"
resolver = "2"
version = "0.5.0-zed"

[target.'cfg(target_os = "redox")'.dependencies.redox_syscall]
version = "0.2"

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

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

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

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