forked from alexcrichton/tar-rs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
32 lines (27 loc) · 893 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "tar"
version = "0.4.38"
authors = ["Alex Crichton <[email protected]>"]
homepage = "https://github.com/alexcrichton/tar-rs"
repository = "https://github.com/alexcrichton/tar-rs"
documentation = "https://docs.rs/tar"
license = "MIT/Apache-2.0"
keywords = ["tar", "tarfile", "encoding"]
readme = "README.md"
edition = "2018"
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 = "0.2", optional = true }
libc = "0.2"
[features]
default = ["xattr"]