2016-04-26 23:43:03 +03:00
[ package ]
name = "sccache"
2017-01-09 20:20:56 +03:00
version = "0.1.1-pre"
2016-04-26 23:43:03 +03:00
authors = [ "Ted Mielczarek <ted@mielczarek.org>" ]
2016-12-16 03:55:19 +03:00
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/"
2016-04-26 23:43:03 +03:00
[ dependencies ]
2016-11-17 18:59:15 +03:00
app_dirs = "1.1.1"
2016-08-12 21:03:37 +03:00
chrono = "0.2.25"
2016-04-26 23:43:03 +03:00
clap = "2.3.0"
2016-04-29 16:32:01 +03:00
env_logger = "0.3.3"
2016-06-28 14:12:54 +03:00
fern = "0.3.5"
2016-05-18 21:30:11 +03:00
filetime = "0.1"
2016-11-03 00:15:14 +03:00
futures = "0.1"
2016-08-25 22:34:42 +03:00
hyper = { version = "0.9.10" , default-features = false }
2016-05-02 22:11:20 +03:00
libc = "0.2.10"
2016-09-21 22:57:28 +03:00
local-encoding = "0.2.0"
2016-04-29 16:32:01 +03:00
log = "0.3.6"
2016-11-29 03:59:42 +03:00
lru-disk-cache = { path = "lru-disk-cache" }
2016-04-29 16:32:01 +03:00
mio = "0.5"
2016-05-12 22:46:22 +03:00
number_prefix = "0.2.5"
2016-04-26 23:43:03 +03:00
protobuf = "1.0.18"
2016-08-12 21:03:37 +03:00
regex = "0.1.65"
2016-05-03 12:56:07 +03:00
retry = "0.4.0"
2016-08-12 21:03:37 +03:00
rust-crypto = "0.2.36"
rustc-serialize = "0.3"
serde_json = "0.8.0"
2016-07-15 17:42:08 +03:00
sha1 = "0.2.0"
2016-05-03 12:56:07 +03:00
tempdir = "0.3.4"
2016-06-28 14:12:54 +03:00
time = "0.1.35"
2016-08-08 22:06:06 +03:00
which = "0.2.1"
2016-06-21 14:42:22 +03:00
winapi = "0.2"
kernel32-sys = "0.2.2"
2016-05-21 21:14:26 +03:00
zip = { version = "0.1" , default-features = false }
2016-05-12 21:47:46 +03:00
2016-10-26 23:22:52 +03:00
[ target . 'cfg(unix)' . dependencies ]
daemonize = "0.2.3"
2016-12-13 17:44:20 +03:00
[ features ]
default = [ ]
# Enable features that require unstable features of Nightly Rust.
unstable = [ ]
2016-05-12 21:47:46 +03:00
[ profile . release ]
debug = true
2016-11-29 03:59:42 +03:00
[ workspace ]