bitis 0.10.5

Bitwise serialization of messages defined in a data description language with interfaces for rust, python and c++.
Documentation
// Simple test message
msg MsgSimpleBaseOneInt {
  uint_11 param_1;
}

// Simple test message
msg MsgSimpleBaseThreeInt {
  uint_11 param_1;
  uint_6 param_2;
  uint_11 param_3;
  uint_6d4 param_4;
}

// Simple test message
msg MsgSimpleTestBase {
  uint_11 param_1;
  bool param_2;
  int_5 param_3;
  astr_d4 name;
}

//
msg MsgSimpleTestFP {
  bool param_1;
  fp_10[-1,1] fp;
  //fp_34[-90,90] fpl;
}

msg MsgSimpleOpt {
  uint_11 param_1;
  optional bool param_2;
  optional uint_11 param_3;
  optional fp_10[-1,1] param_4;
}