veyron-wire 0.1.0

Veyron wire protocol: framing, frame MAC, and generated protobuf types shared by the kernel and its SDKs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod error;
pub mod framing;
pub mod mac;
pub mod socket;
pub mod proto {
    #![allow(clippy::enum_variant_names)]
    pub mod veyron {
        include!(concat!(env!("OUT_DIR"), "/veyron.rs"));
    }
}

pub use error::WireError;