nu_plugin_secret 0.7.0

Production-grade secret handling plugin for Nushell with secure CustomValue types that prevent accidental exposure of sensitive data
Documentation
//! Command implementations for the `secret` plugin.

mod config_export;
mod config_import;
mod config_reset;
mod config_show;
mod config_validate;
mod configure;
mod contains;
mod hash;
mod info;
mod is_empty;
mod length;
mod type_of;
mod unwrap;
mod validate;
mod validate_format;
pub mod wrap;
mod wrap_with;

pub use config_export::SecretConfigExportCommand;
pub use config_import::SecretConfigImportCommand;
pub use config_reset::SecretConfigResetCommand;
pub use config_show::SecretConfigShowCommand;
pub use config_validate::SecretConfigValidateCommand;
pub use configure::SecretConfigureCommand;
pub use contains::SecretContainsCommand;
pub use hash::SecretHashCommand;
pub use info::SecretInfoCommand;
pub use is_empty::SecretIsEmptyCommand;
pub use length::SecretLengthCommand;
pub use type_of::SecretTypeOfCommand;
pub use unwrap::SecretUnwrapCommand;
pub use validate::SecretValidateCommand;
pub use validate_format::SecretValidateFormatCommand;
pub use wrap::SecretWrapCommand;
pub use wrap_with::SecretWrapWithCommand;