summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 1ee57a58ae8681f14d8e1071b52f9de94b7d684b (plain)
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
[package]

name = "shiplift"
version = "0.4.0"
authors = ["softprops <d.tangren@gmail.com>"]
description = "A Rust interface for maneuvering Docker containers"
documentation = "https://docs.rs/shiplift"
homepage = "https://github.com/softprops/shiplift"
repository = "https://github.com/softprops/shiplift"
keywords = ["docker", "unix", "containers", "hyper", "ship"]
license = "MIT"
edition = "2018"
readme = "README.md"

[badges]
travis-ci = { repository = "softprops/shiplift" }
coveralls = { repository = "softprops/shipflit" }
maintenance = { status = "actively-developed" }

[dependencies]
byteorder = "1.3.1"
bytes = "0.4.11"
flate2 = "1.0.6"
futures = "0.1.25"
http = "0.1.15"
hyper = "0.12.24"
hyper-openssl = { version = "0.7.0", optional = true }
hyperlocal = { version = "0.6.0", optional = true }
log = "0.4.6"
mime = "0.3.13"
openssl = { version = "0.10.16", optional = true }
tar = "0.4.20"
tokio = "0.1.15"
tokio-codec = "0.1.1"
tokio-io = "0.1.11"
url = "1.7.2"
serde = { version = "1.0.87", features = ["derive"] }
serde_json = "1.0.38"

[dev-dependencies]
env_logger = "0.6.0"

[features]
default = ["unix-socket", "tls"]
unix-socket = ["hyperlocal"]
tls = ["openssl", "hyper-openssl"]