rclap 1.0.0

rclap is a Rust configuration utility to help to generate the clap structures. The main purpose is to reduce boilerplate code when using clap and expose the configuration requirements as a toml file.
Documentation
//! Secret module - Provides secure handling of sensitive values.
//!
//! This module offers types for securely managing secrets like passwords, tokens, and API keys.
//! The `secret` feature must be enabled when using these types.
//!
//! # Types
//!
//! ## `Secret<S>`
//!
//! A generic wrapper that holds a sensitive value of type `S` (where `S: CloneableSecret`).
//! - Stores the value securely (not shown in plain text)
//! - `Debug` and `Display` implementations show `*` instead of the actual value
//! - Supports serialization/deserialization via serde
//!
//! ## `StringSecret`
//!
//! A specialized wrapper for `String` secrets.
//! - Similar behavior to `Secret<String>`
//! - Useful for passwords, tokens, or any string-based secrets
//!
//! # Usage Example
//!
//! ```
//! use secrecy::{Secret, StringSecret};
//!
//! // Generic secret
//! let password: Secret<String> = Secret::new("my_secret_password".to_string());
//!
//! // String secret
//! let token = StringSecret::new("my_api_token");
//! ```
//!
//! # Feature Flag
//!
//! These types are conditionally compiled when the `secret` Cargo feature is enabled.
//!

pub mod secret;
pub mod string_secret;
pub use secret::Secret;
pub use string_secret::StringSecret;