use CryptoError;
use fmt;
/// Wrapper that forces `main`'s error output to use `Display` formatting.
///
/// Rust's stdlib `Termination` prints the error via `Debug`, which would
/// show `CryptoError`'s derived variant name and wrapper cruft (for
/// example `Io(Custom { kind: Other, error: "..." })`). Implementing
/// `Debug` manually to delegate to `Display` surfaces the short,
/// user-facing message the library already provides.
;