forked from fussybeaver/bollard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
64 lines (58 loc) · 1.68 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
[package]
name = "bollard"
description = "An asynchronous Docker daemon API"
version = "0.9.1"
authors = [ "Bollard contributors" ]
license = "Apache-2.0"
homepage = "https://github.com/fussybeaver/bollard"
repository = "https://github.com/fussybeaver/bollard"
documentation = "https://docs.rs/bollard"
readme = "README.md"
keywords = ["docker"]
edition = "2018"
[features]
# Enable tests specifically for the http connector
test_http = []
# Enable tests specifically for rustls
test_ssl = ["ssl"]
# Enable tests specifically for macos
test_macos = []
# Enable rustls / ssl
ssl = ["hyper-rustls", "rustls", "rustls-native-certs", "webpki-roots"]
[dependencies]
base64 = "0.12.3"
bollard-stubs = { version = "1.40.6" }
bytes = "0.5.5"
chrono = { version = "0.4.11", features = ["serde"] }
ct-logs = "0.7.0"
dirs-next = "1.0.2"
futures-core = "0.3.4"
futures-util = "0.3.4"
hex = "0.4.2"
http = "0.2.1"
hyper = "0.13.6"
hyper-rustls = { version = "0.21.0", optional = true }
log = "0.4.8"
pin-project = "0.4.22"
rustls = { version = "0.18.0", optional = true }
rustls-native-certs = { version = "0.4.0", optional = true }
serde = "1.0.114"
serde_derive = "1.0.114"
serde_json = "1.0.55"
serde_urlencoded = "0.6.1"
tokio = { version = "0.2.17", features = ["time", "fs"] }
thiserror = "1.0"
tokio-util = { version = "0.3.1", features = ["codec"] }
url = "2.1.1"
webpki-roots = { version = "0.20.0", optional = true }
[dev-dependencies]
env_logger = "0.7.1"
flate2 = "1.0.14"
tar = "0.4.29"
[target.'cfg(unix)'.dependencies]
hyperlocal = { version = "0.1.5", package = "hyper-unix-connector" }
[target.'cfg(windows)'.dependencies]
mio-named-pipes = "0.1.6"
winapi = "0.3.9"
[package.metadata.docs.rs]
features = ["ssl"]