-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (49 loc) · 1.52 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
[package]
authors = ["Joshua Potts <[email protected]>"]
categories = ["api-bindings", "asynchronous"]
description = "Docker Engine Client - manage and run containers, images, and volumes."
edition = "2021"
include = [
"src/**/*.rs",
"Cargo.toml",
]
keywords = ["docker", "engine", "client", "compose", "container"]
license = "MPL-2.0"
name = "passivized_docker_engine_client"
readme = "README.md"
repository = "https://github.com/iamjpotts/passivized_docker_engine_client"
rust-version = "1.75"
version = "0.0.10-alpha"
[dependencies]
base64 = "0.21"
byteorder = "1.4"
const-str = "0.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.28"
http-body-util = "0.1"
hyper = { version = "1.1", features = ["client", "http1", "http2"] }
hyper-tls = "0.6.0"
hyper-util = { version = "0.1", features = ["http1", "http2"] }
futures = "0.3"
log = "0.4"
time = { version = "0.3", features = ["parsing"] }
thiserror = "1.0"
tokio = { version = "1.32", features = ["macros", "rt-multi-thread"] }
url = "2.3"
[dev-dependencies]
backoff = { version = "0.4", features = ["futures", "tokio"] }
http = "1.0"
itertools = "0.12"
mockito = "1.2"
native-tls = "0.2"
openssl = "0.10.35"
passivized_htpasswd = "0.0.6"
passivized_test_support = "0.0.11"
rand = "0.8"
simple_logger = { version = "4.3", default-features = false, features = ["timestamps", "threads"] }
tar = "0.4"
thiserror = "1.0"
tempfile = "3.8"
tokio = { version = "1.32", features = ["fs"] }
[target."cfg(unix)".dependencies.hyperlocal]
version = "0.9"