//! Example: Using memguard-rs in a `no_std` embedded context.
//!
//! This example demonstrates the API patterns for using core primitives
//! (zeroization, constant-time comparison) without an allocator.
//!
//! In a real `no_std` project, add this to Cargo.toml:
//! ```toml
//! [dependencies]
//! memguard-rs = { version = "0.1", default-features = false, features = ["lock"] }
//! ```
//!
//! And use `#![no_std]` at the crate root.
use ;