forked from dignifiedquire/async-tar
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Cargo.toml
44 lines (38 loc) · 1.24 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "tokio-tar"
version = "0.3.1"
authors = [
"Alex Crichton <[email protected]>",
"dignifiedquire <[email protected]>",
"Artem Vorotnikov <[email protected]>",
"Aiden McClelland <[email protected]>",
]
homepage = "https://github.com/vorot93/tokio-tar"
repository = "https://github.com/vorot93/tokio-tar"
documentation = "https://docs.rs/tokio-tar"
license = "MIT/Apache-2.0"
keywords = ["tar", "tarfile", "encoding"]
readme = "README.md"
edition = "2018"
exclude = ["tests/archives/*"]
description = """
A Rust implementation of an async 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"
futures-core = "0.3"
tokio = { version = "1", features = ["fs", "io-util", "rt"] }
tokio-stream = "0.1"
[dev-dependencies]
tempfile = "3"
tokio = { version = "1", features = ["full"] }
[target."cfg(unix)".dependencies]
xattr = { version = "1.0", optional = true }
libc = "0.2"
[target.'cfg(target_os = "redox")'.dependencies]
redox_syscall = "0.3"
[features]
default = ["xattr"]