-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
38 lines (32 loc) · 946 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
[package]
name = "qiniu-http"
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 HTTP Interface for Rust"
keywords = ["qiniu", "storage"]
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.41"
assert-impl = "0.1.3"
once_cell = "1.4.1"
http = "0.2.4"
serde = "1.0.130"
auto_impl = "1.0.0"
futures-lite = { version = "1.11.2", optional = true }
qiniu-utils = { version = "0.2.3", path = "../utils" }
[build-dependencies]
rustc_version = "0.4.0"
[features]
default = []
async = ["futures-lite"]
docs = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "feature=\"docs\""]