# Rust Google Authentication Library
A simple Rust library for verifying Google auth tokens.
## Installation
Add this to your `Cargo.toml`:
```toml
[dependencies]
google-auth-verifier = "0.1.0"
```
## Usage
```rust
use google_auth_verifier::AuthVerifierClient;
fn main() {
let mut auth_verifier_client = AuthVerifierClient::new(None);
let res = auth_verifier_client.verify_oauth_token("# insert key here");
match res {
Ok(token_info) => {
println!("Token is valid: {:?}", token_info);
},
Err(e) => {
eprintln!("Failed to verify token: {:?}", e);
},
}
}
```
## Contributing
Contributions are welcome! Please open an issue or submit a pull request.