33 lines
898 B
TOML
33 lines
898 B
TOML
[package]
|
|
name = "tar"
|
|
version = "0.4.41"
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
|
homepage = "https://github.com/alexcrichton/tar-rs"
|
|
repository = "https://github.com/alexcrichton/tar-rs"
|
|
documentation = "https://docs.rs/tar"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["tar", "tarfile", "encoding"]
|
|
readme = "README.md"
|
|
edition = "2021"
|
|
exclude = ["tests/archives/*"]
|
|
|
|
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.
|
|
"""
|
|
|
|
[dependencies]
|
|
filetime = "0.2.8"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|
|
|
|
[target."cfg(unix)".dependencies]
|
|
xattr = { version = "1.1.3", optional = true }
|
|
libc = "0.2"
|
|
|
|
[features]
|
|
default = ["xattr"]
|