azure-auth

A library for Azure authentication in Rust.

Example

```rust,norun let authenticationuri = "https://login.windows.net/{tenant}"; let resource_uri = "https://vault.azure.net";

let authresponse = AzureCliAuthenticator::new() .authenticate(TokenRequestOptions::fromresourceuri( resourceuri, authentication_uri, )) .await;

println!("Auth response: {:?}\n", auth_response); ```