forked from mozilla/sccache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
101 lines (93 loc) · 2.85 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[package]
name = "sccache"
version = "0.2.8-alpha.0"
authors = ["Ted Mielczarek <ted@mielczarek.org>", "Alex Crichton <alex@alexcrichton.com>"]
license = "Apache-2.0"
description = "Sccache is a ccache-like tool. It is used as a compiler wrapper and avoids compilation when possible, storing a cache in a remote storage using the S3 API."
repository = "https://github.com/mozilla/sccache/"
readme = "README.md"
categories = ["command-line-utilities", "development-tools::build-utils"]
keywords = ["ccache"]
[badges]
travis-ci = { repository = "mozilla/sccache" }
appveyor = { repository = "mozilla/sccache" }
[dependencies]
base64 = "0.9.0"
bincode = "0.9"
byteorder = "1.0"
chrono = { version = "0.3", optional = true }
clap = "2.23.0"
env_logger = "0.4"
error-chain = { version = "0.11", default-features = false }
filetime = "0.1"
futures = "0.1.11"
futures-cpupool = "0.1"
hyper = { version = "0.11", optional = true }
hyper-tls = { version = "0.1", optional = true }
jobserver = "0.1"
jsonwebtoken = { version = "4.0", optional = true }
libc = "0.2.10"
local-encoding = "0.2.0"
log = "0.3.6"
lru-disk-cache = { path = "lru-disk-cache", version = "0.2.0" }
memcached-rs = { version = "0.1" , optional = true }
native-tls = "0.1"
num_cpus = "1.0"
number_prefix = "0.2.5"
openssl = { version = "0.9", optional = true }
redis = { version = "0.8.0", optional = true }
regex = "0.2"
retry = "0.4.0"
ring = "0.12.1"
rust-crypto = { version = "0.2.36", optional = true }
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
strip-ansi-escapes = "0.1"
tempdir = "0.3.4"
tempfile = "2.1.5"
time = "0.1.35"
tokio-core = "0.1.6"
tokio-io = "0.1"
tokio-process = "0.1"
tokio-proto = "0.1"
tokio-serde-bincode = "0.1"
tokio-service = "0.1"
tokio-tls = "0.1"
toml = "0.4"
uuid = { version = "0.6", features = ["v4"] }
url = { version = "1.0", optional = true }
which = "1.0"
zip = { version = "=0.2.3", default-features = false }
lazy_static = "1.0.0"
atty = "0.2.6"
directories = "0.8.4"
[dev-dependencies]
assert_cmd = "0.6.0"
cc = "1.0"
chrono = "0.3"
itertools = "0.7"
predicates = "0.5.2"
[target.'cfg(unix)'.dependencies]
daemonize = "0.2.3"
tokio-uds = "0.1"
[target.'cfg(windows)'.dependencies]
kernel32-sys = "0.2.2"
winapi = "0.2"
mio-named-pipes = "0.1"
[features]
default = ["s3"]
all = ["redis", "s3", "memcached", "gcs", "azure"]
# gcs requires openssl, which is a pain on Windows.
all-windows = ["redis", "s3", "memcached", "azure"]
azure = ["chrono", "hyper", "hyper-tls", "rust-crypto"]
s3 = ["chrono", "hyper", "hyper-tls", "rust-crypto", "simple-s3"]
simple-s3 = []
gcs = ["chrono", "hyper", "hyper-tls", "jsonwebtoken", "openssl", "url"]
memcached = ["memcached-rs"]
# Enable features that require unstable features of Nightly Rust.
unstable = []
[workspace]
exclude = ["tests/test-crate"]
[patch.crates-io]
predicates = { git = "https://github.com/luser/predicates-rs", branch = "function-unsized" }