-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Cargo.toml
41 lines (38 loc) · 1.34 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
[package]
name = "gcp_auth"
version = "0.12.3"
edition = "2021"
rust-version = "1.70"
repository = "https://github.com/hrvolapeter/gcp_auth"
description = "Google cloud platform (GCP) authentication using default and custom service accounts"
documentation = "https://docs.rs/gcp_auth/"
keywords = ["authentication", "gcp", "google"]
categories = ["asynchronous", "authentication"]
readme = "README.md"
license = "MIT"
[features]
default = ["hyper-rustls/rustls-native-certs", "hyper-rustls/ring"]
webpki-roots = ["hyper-rustls/webpki-roots"]
[dependencies]
async-trait = "0.1"
base64 = "0.22"
bytes = "1"
chrono = { version = "0.4.31", features = ["serde"] }
home = "0.5.5"
http = "1"
http-body-util = "0.1"
hyper = { version = "1", default-features = false, features = ["client", "http1", "http2"] }
hyper-rustls = { version = "0.27", default-features = false, features = ["http1", "http2"] }
hyper-util = { version = "0.1.4", features = ["client-legacy"] }
ring = "0.17"
rustls-pemfile = "2"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
thiserror = "1.0"
tokio = { version = "1.1", features = ["fs", "sync"] }
tracing = "0.1.29"
tracing-futures = "0.2.5"
url = "2"
[dev-dependencies]
tokio = { version = "1.1", features = ["macros", "parking_lot", "rt-multi-thread"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }