byteorder-cursor 1.0.1

A std::io::Cursor like buffer interface with byteorder support and no_std compatibility.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![cfg_attr(not(feature = "std"), no_std)]
#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/README.md"))]
#![forbid(unsafe_code)]

mod cursor;
mod error;

pub use cursor::Cursor;
pub use error::BufferTooSmall;

pub use byteorder::{BigEndian, LittleEndian};