forked from fussybeaver/bollard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
70 lines (63 loc) · 1.94 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
[package]
name = "bollard"
description = "An asynchronous Docker daemon API"
version = "0.11.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"]
ct_logs = ["ssl", "ct-logs"]
[dependencies]
base64 = "0.13"
bollard-stubs = { version = "1.41.0" }
bytes = "1"
chrono = { version = "0.4", features = ["serde"] }
ct-logs = { version = "0.9.0", optional = true }
dirs-next = "2.0"
futures-core = "0.3"
futures-util = "0.3"
hex = "0.4.2"
http = "0.2"
hyper = { version = "0.14", features = ["client", "tcp", "http1", "http2", "stream"] }
hyper-rustls = { version = "0.23", optional = true }
log = "0.4"
pin-project = "1.0.2"
rustls = { version = "0.20", optional = true }
rustls-native-certs = { version = "0.6.0", optional = true }
rustls-pemfile = "0.2"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
serde_urlencoded = "0.7"
tokio = { version = "1.7", features = ["time", "fs", "net", "rt", "rt-multi-thread", "io-util"] }
thiserror = "1.0"
tokio-util = { version = "0.6", features = ["codec"] }
url = "2.2"
webpki-roots = { version = "0.22", optional = true }
webpki = "0.22"
[dev-dependencies]
env_logger = "0.9"
flate2 = "1.0"
tar = "0.4"
tokio = { version = "1.7", features = ["time", "fs", "net", "rt", "rt-multi-thread", "macros", "io-std"] }
[target.'cfg(unix)'.dependencies]
hyperlocal = { version = "0.8.0" }
[target.'cfg(unix)'.dev-dependencies]
termion = "1.5"
[target.'cfg(windows)'.dependencies]
winapi = "0.3.9"
[package.metadata.docs.rs]
features = ["ssl"]