[dependencies.filetime]
version = "0.2"
[dependencies.futures-core]
version = "0.3"
[dependencies.tokio]
features = ["fs", "io-util", "rt"]
version = "1"
[dependencies.tokio-stream]
version = "0.1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
features = ["full"]
version = "1"
[features]
default = ["xattr"]
[package]
authors = ["Alex Crichton <alex@alexcrichton.com>", "dignifiedquire <me@dignifiequire.com>", "Artem Vorotnikov <artem@vorotnikov.me>", "Aiden McClelland <me@drbonez.dev>"]
description = "A Rust implementation of an async 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/tokio-tar"
edition = "2018"
exclude = ["tests/archives/*"]
homepage = "https://github.com/vorot93/tokio-tar"
keywords = ["tar", "tarfile", "encoding"]
license = "MIT/Apache-2.0"
name = "tokio-tar"
readme = "README.md"
repository = "https://github.com/vorot93/tokio-tar"
version = "0.3.1"
[target."cfg(target_os = \"redox\")".dependencies.redox_syscall]
version = "0.3"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(unix)".dependencies.xattr]
optional = true
version = "1.0"