-
Notifications
You must be signed in to change notification settings - Fork 142
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (37 loc) · 1.72 KB
/
Cargo.toml
File metadata and controls
41 lines (37 loc) · 1.72 KB
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
[package]
name = "gcloud-artifact-registry"
version = "1.5.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]
token-source = "1.0"
google-cloud-auth = { package = "gcloud-auth", optional = true, version = "1.3.0", path="../foundation/auth", default-features=false }
google-cloud-googleapis = { package = "gcloud-googleapis", version="1.3.0", path = "../googleapis", features=["artifact-registry"]}
google-cloud-gax = { package = "gcloud-gax", version = "1.4.0", path = "../foundation/gax"}
google-cloud-longrunning = { package = "gcloud-longrunning", version = "1.4.0", path = "../foundation/longrunning" }
tracing = "0.1"
prost-types = "0.14"
[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.5"
google-cloud-auth = { package = "gcloud-auth", path = "../foundation/auth", default-features=false }
[features]
default = ["rustls-tls", "auth", "jwt-aws-lc-rs"]
rustls-tls = ["google-cloud-auth?/rustls-tls"]
native-tls = ["google-cloud-auth?/native-tls"]
rustls-no-provider = ["google-cloud-auth?/rustls-no-provider"]
trace = []
auth = ["google-cloud-auth"]
external-account = ["google-cloud-auth?/external-account"]
jwt-aws-lc-rs = ["google-cloud-auth?/jwt-aws-lc-rs"]
jwt-rust-crypto = ["google-cloud-auth?/jwt-rust-crypto"]