-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
41 lines (36 loc) · 1023 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
40
41
[package]
name = "qiniu-credential"
version = "0.2.3"
authors = ["Rong Zhou <[email protected]>", "Shanghai Qiniu Information Technologies Co., Ltd."]
edition = "2021"
rust-version = "1.60.0"
readme = "README.md"
license = "MIT"
repository = "https://github.com/qiniu/rust-sdk.git"
homepage = "https://www.qiniu.com"
description = "Qiniu Credential SDK for Rust"
keywords = ["qiniu", "storage"]
[dependencies]
hmac = { version = "0.11.0", features = ["std"] }
sha-1 = "0.9.6"
once_cell = "1.8.0"
http = "0.2.4"
mime = "0.3.16"
form_urlencoded = "1.0.1"
serde = "1.0.130"
dyn-clonable = "0.9.0"
assert-impl = "0.1.3"
auto_impl = "1.0.0"
futures-lite = { version = "1.12.0", optional = true }
qiniu-utils = { version = "0.2.3", path = "../utils" }
[dev-dependencies]
anyhow = "1.0.41"
async-std = { version = "1.9.0", features = ["attributes"] }
serde_json = "1.0.68"
[features]
default = []
async = ["futures-lite"]
docs = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "feature=\"docs\""]