This repository has been archived by the owner on Jan 9, 2020. It is now read-only.
forked from faradayio/cage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
71 lines (63 loc) · 1.96 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
[package]
name = "cage"
version = "0.1.10"
authors = ["Eric Kidd <[email protected]>",
"Derek Kastner <[email protected]>"]
description = "Develop multi-pod docker-compose apps"
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/faradayio/cage"
documentation = "https://docs.rs/cage/"
homepage = "http://cage.faraday.io/"
build = "build.rs"
[features]
# This build of `cage` is our standard, official build.
default = ["default-minimal", "openssl"]
# This build of `cage` relies on nightly Rust features.
unstable = ["unstable-minimal", "openssl", "clippy"]
# OpenSSL causes build problems on less popular platforms, especially for
# our binary builds. And we only need it for certain advanced features.
# So we allow it to be disabled using:
#
# cargo build --no-default-features --features default-minimal
openssl = ["hashicorp_vault", "boondock/ssl"]
# You must always enable one of these features or the other to get serde to
# build.
default-minimal = ["serde_codegen", "compose_yml/default"]
unstable-minimal = ["serde_derive", "compose_yml/unstable"]
[[bin]]
name = "cage"
doc = false
test = true
[build-dependencies]
glob = "0.2.11"
includedir_codegen = "0.2.1"
serde_codegen = { version = "0.8", optional = true }
[dependencies]
boondock = { version = "0.0.47", default-features = false }
clap = { version = "2.14.0", features = ["yaml"] }
clippy = { version = "0.0.*", optional = true }
colored = "1.3.1"
compose_yml = { version = "0.0.48", default-features = false }
env_logger = "0.3.4"
error-chain = "0.5.0"
glob = "0.2.11"
handlebars = "0.21.0"
hashicorp_vault = { version = "0.6.1", optional = true }
includedir = "0.2.1"
itertools = "0.5.6"
lazy_static = "0.2.1"
log = "0.3.6"
phf = "0.7.16"
rand = "0.3.14"
rayon = "0.4.2"
regex = "0.1.73"
retry = "0.4.0"
rustc-serialize = "0.3.19"
semver = "0.5.0"
serde = "0.8"
serde_derive = { version = "0.8", optional = true }
serde_yaml = "0.4.1"
shlex = "0.1.1"
url = "1.2.0"
yaml-rust = "0.3.3"