-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathCargo.toml
75 lines (59 loc) · 1.76 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
72
73
74
75
[package]
name = "docker-api"
version = "0.14.0"
authors = ["Wojciech Kępka <[email protected]"]
description = "Interface to Docker API"
documentation = "https://docs.rs/docker-api"
homepage = "https://github.com/vv9k/docker-api-rs"
repository = "https://github.com/vv9k/docker-api-rs"
keywords = ["docker"]
license = "MIT"
edition = "2021"
readme = "README.md"
[dependencies]
containers-api = "0.9"
#containers-api = { path = "../containers-api" }
#containers-api = { git = "https://github.com/vv9k/containers-api" }
#docker-api-stubs = "0.5"
docker-api-stubs = { path = "./docker-api-stubs/lib" }
log = "0.4"
paste = "1"
thiserror = "1"
base64 = "0.13"
byteorder = "1.4"
bytes = "1.0"
chrono = { version="0.4", optional=true, features=["serde"] }
tar = "0.4"
serde = { version="1.0", features=["derive"] }
serde_json = "1.0"
url = "2.1"
futures-util = "0.3"
asynchronous-codec = "0.6"
http = "0.2"
hyper = { version="0.14", features=["client", "http1", "tcp", "stream"] }
hyper-openssl = { version="0.9", optional=true }
openssl = { version="0.10", optional=true }
[dev-dependencies]
env_logger = "0.9"
# Required for examples to run
futures = "0.3.1"
tokio = { version="1", features=["macros", "rt-multi-thread"] }
clap = { version = "4", features = ["derive"] }
pretty_assertions = "1"
futures-util = "0.3"
tempfile = "3"
gethostname = "0.2"
[target.'cfg(unix)'.dev-dependencies]
nix = "0.25"
[features]
default = ["containers-api/chrono", "chrono"]
tls = ["containers-api/tls"]
vendored-ssl = ["tls", "containers-api/vendored-ssl"]
par-compress = ["containers-api/par-compress"]
swarm = []
# docs.rs-specific configuration
[package.metadata.docs.rs]
# document all features
all-features = true
# defines the configuration attribute `docsrs`
rustdoc-args = ["--cfg", "docsrs"]