//! *Safe, `no_std`-compatible I/O traits for the Zcash ecosystem.*
//!
//! When the `std` feature is enabled (the default), this crate re-exports
//! types from [`std::io`] directly. In `no_std` mode, it provides minimal
//! safe implementations of [`io::Read`], [`io::Write`], [`io::Cursor`],
//! [`io::Error`], and [`io::ErrorKind`].
//!
//! # Usage
//!
//! ```
//! use corez::io::{Read, Write};
//! ```
extern crate alloc;
extern crate std;
/// I/O traits, types, and error handling.
///
/// When the `std` feature is enabled, this module re-exports from
/// [`std::io`]. Otherwise it provides safe `no_std` implementations.
pub use io;