akv-cli 0.6.0

The Azure Key Vault CLI (unofficial) can read secrets from Key Vault, securely pass secrets to other commands or inject them into configuration files, encrypt and decrypt secrets, and managed keys and secrets in Key Vault.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2025 Heath Stewart.
// Licensed under the MIT License. See LICENSE.txt in the project root for license information.

pub mod cache;
#[cfg(feature = "color")]
pub mod color;
pub mod credentials;
mod error;
pub mod jose;
pub mod json;
pub mod parsing;

pub use error::*;