forked from yoshidan/google-cloud-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
68 lines (64 loc) · 2.14 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
authors = ["yoshidan <[email protected]>"]
description = "Google Cloud Platform storage client library."
documentation = "https://docs.rs/google-cloud-storage/latest/google_cloud_storage/"
edition = "2021"
keywords = ["gcp", "gcs", "storage", "googleapis", "google-cloud-rust"]
license = "MIT"
name = "google-cloud-storage"
readme = "README.md"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/storage"
version = "0.23.0"
[dependencies]
anyhow = "1.0"
async-stream = "0.3"
async-trait = "0.1"
base64 = "0.21"
bytes = "1.5"
futures-util = "0.3"
google-cloud-token = {version = "0.1.2", path = "../foundation/token"}
hex = "0.4"
once_cell = "1.18"
percent-encoding = "2.3"
pkcs8 = {version = "0.10", features = ["pem"]}
regex = "1.9"
reqwest = {version = "0.12", features = [
"json",
"stream",
"multipart",
], default-features = false}
reqwest-middleware = {version = "0.4", features = ["json", "multipart"]}
ring = "0.17"
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
sha2 = "0.10"
thiserror = "1.0"
time = {version = "0.3", features = [
"std",
"macros",
"formatting",
"parsing",
"serde",
]}
tokio = {version = "1.32", features = ["macros"]}
tracing = "0.1"
url = "2.4"
google-cloud-auth = {optional = true, version = "0.17", path = "../foundation/auth", default-features = false}
google-cloud-metadata = {optional = true, version = "0.5", path = "../foundation/metadata"}
[dev-dependencies]
ctor = "0.1.26"
google-cloud-auth = {path = "../foundation/auth", default-features = false}
reqwest-retry = "0.7.0"
retry-policies = "0.4.0"
serial_test = "3.1"
tokio = {version = "1.32", features = ["rt-multi-thread"]}
tokio-util = {version = "0.7", features = ["codec"]}
tracing-subscriber = {version = "0.3.17", features = ["env-filter"]}
[features]
auth = ["google-cloud-auth", "google-cloud-metadata"]
default = ["default-tls", "auth"]
default-tls = ["reqwest/default-tls", "google-cloud-auth?/default-tls"]
external-account = ["google-cloud-auth?/external-account"]
hickory-dns = ["reqwest/hickory-dns", "google-cloud-auth?/hickory-dns"]
rustls-tls = ["reqwest/rustls-tls", "google-cloud-auth?/rustls-tls"]
trace = []