wireparse 0.1.0

Library for reading and writing ethernet and other related protocals.
Documentation
//! A library for reading and writing ethernet packets
//!
//! If you are using pcap, you probaby want to be looking at the [`EthernetFrame`] struct.
//!

#![no_std]
mod common;
mod error;
mod ethernet;
pub mod io;
mod proto;

pub use common::*;
pub use error::*;
pub use ethernet::*;
pub use proto::*;

#[cfg(feature = "alloc")]
extern crate alloc;