Rust bindings for Azure Key Vault REST API.
🚧 Work in progress, not encouraged for use in production. 🚧
```rust use azuresdkkeyvault::KeyVaultClient; use std::env;
async fn main() -> Result<(), Box
// Set a secret.
client.set_secret("test-secret", "42").await?;
// Get a secret.
let secret = client.get_secret(&secret_name).await?;
assert_eq!("42", secret.value());
Ok(())
} ```
...are welcome! Currently the repo exposes a very small number of operations.
This project was started from the fantastic AzureSDKForRust
repo.