summaryrefslogtreecommitdiffhomepage
path: root/tools/unitctl/unit-client-rs/Cargo.toml
blob: d3b2f9cf565d8846d91081278d14a76308089d34 (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
[package]
name = "unit-client-rs"
version = "0.4.0-beta"
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-tls = "0.5"
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"

[dev-dependencies]
rand = "0.8.5"