Skip to main content

Crate corez

Crate corez 

Source
Expand description

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};

Modules§

io
I/O traits, types, and error handling.