1 2 3 4 5 6 7 8 9 10 11
//! Decoder/Encoder for Air Avionics TDB file format. //! //! The [decode_file] function can be used to decode FlarmNet files in //! Air Avionics TDB format. mod consts; mod decode; mod encode; pub use decode::*; pub use encode::*;