gcloud_auth/
lib.rs

1pub mod credentials;
2pub mod error;
3pub mod idtoken;
4mod misc;
5pub mod project;
6pub mod token;
7pub mod token_source;
8
9#[cfg(all(feature = "jwt-aws-lc-rs", feature = "jwt-rust-crypto"))]
10compile_error!("Enable only one feature: `jwt-aws-lc-rs` OR `jwt-rust-crypto`.");
11
12#[cfg(not(any(feature = "jwt-aws-lc-rs", feature = "jwt-rust-crypto")))]
13compile_error!("Enable one feature: `jwt-aws-lc-rs` OR `jwt-rust-crypto`.");