blob: 7cdd0b9f2638d247bd2c5cc0b63d86175532f4d3 (
plain) (
blame)
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
|
[package]
name = "unit-client-rs"
version = "1.33.0"
authors = ["Elijah Zupancic"]
edition = "2021"
license = "Apache-2.0"
[lib]
name = "unit_client_rs"
[features]
# this preserves the ordering of json
default = ["serde_json/preserve_order"]
[dependencies]
custom_error = "1.9"
hyper = { version = "0.14", features = ["stream"] }
hyper-rustls = { version = "0.25.0", features = ["rustls-native-certs", "webpki-roots", "http2"] }
hyperlocal = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sysinfo = "0.30.5"
tokio = { version = "1.34", features = ["macros"] }
futures = "0.3"
hex = "0.4"
which = "5.0"
unit-openapi = { path = "../unit-openapi" }
rustls = "0.23.5"
bollard = "0.17.1"
regex = "1.10.4"
pbr = "1.1.1"
[dev-dependencies]
rand = "0.8.5"
|