]> git.proxmox.com Git - rustc.git/blob - vendor/tar/Cargo.toml
New upstream version 1.74.1+dfsg1
[rustc.git] / vendor / tar / Cargo.toml
1 # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2 #
3 # When uploading crates to the registry Cargo will automatically
4 # "normalize" Cargo.toml files for maximal compatibility
5 # with all versions of Cargo and also rewrite `path` dependencies
6 # to registry (e.g., crates.io) dependencies.
7 #
8 # If you are reading this file be aware that the original Cargo.toml
9 # will likely look very different (and much more reasonable).
10 # See Cargo.toml.orig for the original contents.
11
12 [package]
13 edition = "2018"
14 name = "tar"
15 version = "0.4.40"
16 authors = ["Alex Crichton <alex@alexcrichton.com>"]
17 exclude = ["tests/archives/*"]
18 description = """
19 A Rust implementation of a TAR file reader and writer. This library does not
20 currently handle compression, but it is abstract over all I/O readers and
21 writers. Additionally, great lengths are taken to ensure that the entire
22 contents are never required to be entirely resident in memory all at once.
23 """
24 homepage = "https://github.com/alexcrichton/tar-rs"
25 documentation = "https://docs.rs/tar"
26 readme = "README.md"
27 keywords = [
28 "tar",
29 "tarfile",
30 "encoding",
31 ]
32 license = "MIT/Apache-2.0"
33 repository = "https://github.com/alexcrichton/tar-rs"
34
35 [dependencies.filetime]
36 version = "0.2.8"
37
38 [dev-dependencies.tempfile]
39 version = "3"
40
41 [features]
42 default = ["xattr"]
43
44 [target."cfg(unix)".dependencies.libc]
45 version = "0.2"
46
47 [target."cfg(unix)".dependencies.xattr]
48 version = "1.0"
49 optional = true