secret_store 0.1.1

A unified, async secret store interface for Azure Key Vault, AWS Secrets Manager, GCP Secret Manager, and generic HTTP endpoints
Documentation
1
2
3
4
5
6
7
8
9
10
//! Shared types, error definitions, and utility functions used across all
//! secret store providers.

pub mod error;
pub mod types;
pub mod utils;

pub use error::{Error, Result};
pub use types::{SecretMeta, SecretValue};
pub use utils::obfuscate_secret;