azure_security_keyvault 0.12.0

Rust wrapper around Microsoft Azure REST APIs for Azure Key Vault
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Azure Security Key Vault
//!
//! This crate is part of the unofficial Azure SDK effort in Rust. For more
//! information on the project, and an overview of other crates, please refer to
//! [our GitHub repository](https://github.com/azure/azure-sdk-for-rust).

#[macro_use]
extern crate azure_core;

mod account;
mod certificates;
mod clients;
mod keys;
pub mod prelude;
mod secrets;

pub use clients::*;