-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
39 lines (37 loc) · 1.03 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
[package]
name = "aliyun-openapi-core-rust-sdk"
description = "Aliyun OpenAPI POP core SDK for Rust"
version = "1.1.0"
keywords = ["aliyun", "openapi", "api", "sdk"]
categories = ["api-bindings"]
authors = ["r4ntix <[email protected]>"]
license = "MIT"
documentation = "https://docs.rs/aliyun-openapi-core-rust-sdk"
repository = "https://github.com/r4ntix/aliyun-openapi-core-rust-sdk"
readme = "README.md"
edition = "2021"
[dependencies]
anyhow = "1.0.30"
async-trait = "0.1"
base16ct = { version = "0.2", features = ["std"] }
base64 = "0.21"
futures = "0.3"
hmac = "0.12"
md-5 = "0.10"
rand = "0.8"
reqwest = { version = "0.11", features = ["blocking", "json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha1 = "0.10"
thiserror = "1.0"
time = { version = "0.3", features = ["formatting", "macros"] }
url = "2.1.1"
uuid = { version = "1.3", features = ["v4", "fast-rng"] }
[dev-dependencies]
tokio = { version = "1.19", default-features = false, features = [
"io-util",
"rt",
"sync",
"time",
"macros"
] }