1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
// TODO
// - warnings/etc
// - fixup the pub/private mod, prelude
// - add mixed-endian tests/etc
// - add some address sanitizers to the testing, probably use the fuzz testing framework
// - reorganize the submodules/types

#![no_std]
//#![deny(warnings, clippy::all)]

#[macro_use]
mod macros;

pub mod decoder;
pub mod message;
pub mod messages;
pub mod mtdata2;
pub mod prelude;
pub mod wire;