parsio 0.0.2-pre.0

Parser-related I/O utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc = include_str!("../README.md")]

#[cfg(not(feature = "std"))]
compile_error!(
    "This library requires the `std` feature enabled until core::io::ErrorKind gets stabilized"
);

mod error;
pub use error::*;

mod read;
mod write;
pub use read::*;
pub use write::*;