Is your feature request related to a problem? Please describe.
Enabling the idtoken feature of google_cloud_auth unconditionally pulls in jsonwebtoken with the rust_crypto feature. jsonwebtoken has two features, rust_crypto and aws_lc_rust; they MUST have only one set otherwise compilation fails.
For various reasons, I am already using jsonwebtoken with aws_lc_rust. As such, I would like to configure google_cloud_auth to also use the aws_lc_rust feature so that it can compile.
Describe the solution you'd like
I would like to configure google_cloud_auth to also use the aws_lc_rust feature so that it can compile.
Describe alternatives you've considered
use rust_crypto which is not compliant with my security requirements.
Additional context
Add any other context or screenshots about the feature request here.
Is your feature request related to a problem? Please describe.
Enabling the
idtokenfeature of google_cloud_auth unconditionally pulls injsonwebtokenwith therust_cryptofeature.jsonwebtokenhas two features,rust_cryptoandaws_lc_rust; they MUST have only one set otherwise compilation fails.For various reasons, I am already using
jsonwebtokenwithaws_lc_rust. As such, I would like to configuregoogle_cloud_authto also use theaws_lc_rustfeature so that it can compile.Describe the solution you'd like
I would like to configure
google_cloud_authto also use theaws_lc_rustfeature so that it can compile.Describe alternatives you've considered
use
rust_cryptowhich is not compliant with my security requirements.Additional context
Add any other context or screenshots about the feature request here.