-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
30 lines (27 loc) · 1008 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
[package]
name = "qcos"
version = "0.1.13"
edition = "2021"
authors = ["bujnlc8 <[email protected]>"]
description = "Provide basic interface encapsulation of Tencent Cloud Object Storage (cos)"
repository = "https://github.com/bujnlc8/qcos"
license = "MIT"
keywords = ["cos", "tengxunyun", "tencentcloud", "qcos"]
[dependencies]
reqwest = { version = "0.12", features = ["json", "stream", "rustls-tls"] , default-features = false}
serde = {version="1", features = ["derive"]}
serde_json = "1.0"
chrono = "0.4.38"
hmac-sha1 = "0.2.2"
sha1 = "0.10.6"
urlencoding = "2.1.3"
mime = "0.3.17"
quick-xml = {version = "0.36.1", features = ["serialize"]}
tokio = { version = "1.39.2", features = ["full"]}
indicatif = { version = "0.17.8", optional = true }
futures-util = { version = "0.3.30", optional = true }
tokio-util = {version = "0.7.11", optional = true}
[dev-dependencies]
tokio = { version = "1.39.2", features = ["full"]}
[features]
progress-bar = ["dep:indicatif", "dep:futures-util", "dep:tokio-util"]