sccache/Cargo.toml

51 строка
1.1 KiB
TOML
Исходник Обычный вид История

[package]
name = "sccache"
version = "0.1.1-pre"
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/"
[dependencies]
app_dirs = "1.1.1"
chrono = "0.2.25"
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"
filetime = "0.1"
futures = "0.1"
2016-08-25 22:34:42 +03:00
hyper = { version = "0.9.10", default-features = false }
libc = "0.2.10"
local-encoding = "0.2.0"
2016-04-29 16:32:01 +03:00
log = "0.3.6"
lru-disk-cache = { path = "lru-disk-cache" }
2016-04-29 16:32:01 +03:00
mio = "0.5"
number_prefix = "0.2.5"
protobuf = "1.0.18"
regex = "0.1.65"
retry = "0.4.0"
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"
tempdir = "0.3.4"
2016-06-28 14:12:54 +03:00
time = "0.1.35"
which = "0.2.1"
winapi = "0.2"
kernel32-sys = "0.2.2"
zip = { version = "0.1", default-features = false }
2016-10-26 23:22:52 +03:00
[target.'cfg(unix)'.dependencies]
daemonize = "0.2.3"
[features]
default = []
# Enable features that require unstable features of Nightly Rust.
unstable = []
[profile.release]
debug = true
[workspace]