gcloud-auth 1.3.0

Google Cloud Platform server application authentication library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod credentials;
pub mod error;
pub mod idtoken;
mod misc;
pub mod project;
pub mod token;
pub mod token_source;

#[cfg(all(feature = "jwt-aws-lc-rs", feature = "jwt-rust-crypto"))]
compile_error!("Enable only one feature: `jwt-aws-lc-rs` OR `jwt-rust-crypto`.");

#[cfg(not(any(feature = "jwt-aws-lc-rs", feature = "jwt-rust-crypto")))]
compile_error!("Enable one feature: `jwt-aws-lc-rs` OR `jwt-rust-crypto`.");