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