-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (65 loc) · 2.55 KB
/
Cargo.toml
File metadata and controls
71 lines (65 loc) · 2.55 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
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
69
70
71
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
[package]
name = "google-cloud-auth"
# ATTENTION: if you change the major version, remember to change the major
# version of all downstream dependencies. For details see:
# https://github.com/googleapis/google-cloud-rust/issues/3237
# https://github.com/googleapis/google-cloud-rust/issues/3265
version = "1.2.0"
description = "Google Cloud Client Libraries for Rust - Authentication"
build = "build.rs"
# Inherit other attributes from the workspace.
authors.workspace = true
categories.workspace = true
edition.workspace = true
keywords.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
[build-dependencies]
rustc_version.workspace = true
[dependencies]
async-trait.workspace = true
base64.workspace = true
http.workspace = true
reqwest = { workspace = true, features = ["json", "rustls-tls"] }
rustls = { workspace = true, features = ["logging", "ring", "std", "tls12"] }
rustls-pemfile = { workspace = true, features = ["std"] }
serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
time = { workspace = true, features = ["serde"] }
tokio = { workspace = true, features = ["fs", "process"] }
bon.workspace = true
# Local dependencies
gax.workspace = true
[dev-dependencies]
anyhow.workspace = true
httptest.workspace = true
mockall.workspace = true
regex.workspace = true
rsa = { workspace = true, features = ["pem"] }
scoped-env.workspace = true
serial_test.workspace = true
tempfile.workspace = true
test-case.workspace = true
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "test-util"] }
tokio-test.workspace = true
url.workspace = true
mutants.workspace = true
[target.'cfg(google_cloud_unstable_id_token)'.dependencies]
jsonwebtoken = { workspace = true, features = ["rust_crypto"] }
[lints]
workspace = true