Validate firabase ID token written in Rust
Add the following to Cargo.toml:
toml
[dependencies]
firebase-token = "0.3"
```rust use firebase_token::JwkAuth;
let jwkauth = JwkAuth::new(FIREBASEPROJECTID).await; let tokenclaim = jwkauth.verify(idtoken).await; ```
MIT