//! SmartPassLib — cryptographic password generation without storage.
//!
//! Cross-platform deterministic password generation compatible with Python, JavaScript,
//! Kotlin, Go, and C# implementations.
//!
//! # Example
//! ```
//! use smartpasslib::*;
//!
//! let secret = "MyStrongSecretPhrase2026!";
//! let password = generate_smart_password_sync(secret, 16).unwrap();
//! println!("{}", password);
//! ```
pub use ;
pub use ;
pub use ;
pub const VERSION: &str = "4.0.0";