1[package] 2name = "tar" 3version = "0.4.37" 4authors = ["Alex Crichton <alex@alexcrichton.com>"] 5homepage = "https://github.com/alexcrichton/tar-rs" 6repository = "https://github.com/alexcrichton/tar-rs" 7documentation = "https://docs.rs/tar" 8license = "MIT/Apache-2.0" 9keywords = ["tar", "tarfile", "encoding"] 10readme = "README.md" 11edition = "2018" 12exclude = ["tests/archives/*"] 13 14description = """ 15A Rust implementation of a TAR file reader and writer. This library does not 16currently handle compression, but it is abstract over all I/O readers and 17writers. Additionally, great lengths are taken to ensure that the entire 18contents are never required to be entirely resident in memory all at once. 19""" 20 21[dependencies] 22filetime = "0.2.8" 23 24[dev-dependencies] 25tempfile = "3" 26 27[target."cfg(unix)".dependencies] 28xattr = { version = "0.2", optional = true } 29libc = "0.2" 30 31[features] 32default = ["xattr"] 33