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;