-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (33 loc) · 1019 Bytes
/
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
[package]
name = "huawei-cloud-api-definitions"
version = "0.1.0"
edition = "2021"
authors = ["mingyang91 <mingyang91@qq.com>"]
description = "Huawei Cloud API definitions, generated from OpenAPI spec"
license = "MIT"
repository = "https://github.com/mingyang91/huawei-cloud-api-definitions"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "update"
path = "src/update.rs"
[lib]
name = "huawei_cloud_api_definitions"
path = "src/lib.rs"
[features]
reqwest = ["dep:http"]
[dependencies]
toml = { version = "*" }
reqwest = { version = "*", features = ["json"] }
tokio = { version = "*", features = ["full"] }
tokio-stream = { version = "*" }
serde = { version = "*", features = ["derive"] }
serde_json = { version = "*" }
futures = { version = "*" }
futures-util = { version = "*" }
thiserror = { version = "*" }
async-trait = { version = "*" }
sha2 = "0.10.8"
hmac = "0.12.1"
hex = "0.4.3"
chrono = "0.4.19"
http = { version = "0.2", optional = true }