-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathCargo.toml
38 lines (34 loc) · 1.62 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
[package]
name = "gcloud-artifact-registry"
version = "1.0.0"
edition = "2021"
authors = ["yoshidan <[email protected]>"]
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/artifact-registry"
keywords = ["gcp", "artifacts-registry","googleapis","google-cloud-rust"]
license = "MIT"
readme = "README.md"
description = "Google Cloud Platform Artifact Registry client library."
documentation = "https://docs.rs/gcloud-artifact-registry/latest/gcloud_artifact_registry/"
[lib]
doctest = false
[dependencies]
google-cloud-token = { package = "gcloud-token", version = "1.0.0", path = "../foundation/token" }
google-cloud-auth = { package = "gcloud-auth", optional = true, version = "1.0.0", path="../foundation/auth", default-features=false }
google-cloud-googleapis = { package = "gcloud-googleapis", version="1.0.0", path = "../googleapis", features=["artifact-registry"]}
google-cloud-gax = { package = "gcloud-gax", version = "1.0.0", path = "../foundation/gax"}
google-cloud-longrunning = { package = "gcloud-longrunning", version = "1.0.0", path = "../foundation/longrunning" }
tracing = "0.1"
prost-types = "0.13"
[dev-dependencies]
tokio = { version="1.32", features=["rt-multi-thread"] }
serial_test = "3.1"
tracing-subscriber = { version="0.3.17", features=["env-filter"]}
ctor = "0.1"
google-cloud-auth = { package = "gcloud-auth", path = "../foundation/auth", default-features=false }
[features]
default = ["default-tls", "auth"]
default-tls = ["google-cloud-auth?/default-tls"]
rustls-tls = ["google-cloud-auth?/rustls-tls"]
trace = []
auth = ["google-cloud-auth"]
external-account = ["google-cloud-auth?/external-account"]