fnox 1.23.0

A flexible secret management tool supporting multiple providers and encryption methods
Documentation
// Library interface for fnox

pub mod auth_prompt;
pub mod commands;
pub mod config;
pub mod env;
pub mod error;
pub mod hook_env;
pub mod http;
pub mod lease;
pub mod lease_backends;
pub mod library;
pub mod mcp_server;
pub mod providers;
pub mod secret_resolver;
pub mod settings;
pub mod shell;
pub mod source_registry;
pub mod spanned;
pub mod suggest;
pub mod temp_file_secrets;
pub mod tui;

// Re-export commonly used items
pub use error::{FnoxError, Result};
pub use library::Fnox;