-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (34 loc) · 954 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
[package]
name = "qiniu-cdn-manager"
description = "A CLI to Manage Qiniu CDN."
authors = ["linghaihui <haihuiling2014@gmail.com"]
readme = "README.md"
version = "0.1.2"
license = "MIT"
edition = "2021"
repository = "https://github.com/bujnlc8/qiniu-cdn-manager"
categories = ["command-line-utilities"]
exclude = ["snapshots", "Makefile", "bacon.toml"]
keywords = ["qiniu", "qiniu-cdn"]
[dependencies]
anyhow = "1.0.90"
base64 = "0.22.1"
chrono = "0.4.38"
clap = { version = "4.5.20", features = ["derive"] }
clap_complete = "4.5.8"
colored = "2.1.0"
dialoguer = "0.11.0"
flate2 = "1.0.30"
hmac-sha1 = "0.2.2"
reqwest = { version = "0.12", features = ["json", "rustls-tls"] , default-features = false}
serde = {version = "1", features = ["derive"]}
serde_json = "1.0.120"
tokio = { version = "1", features = ["full"] }
toml = "0.8.14"
unicode-width = "0.1.13"
[profile.release]
lto = true
opt-level = "z"
panic = "abort"
strip = true
codegen-units = 1