Start adding messagepack serialization by adding custom serialize trait to handle csv and messagepack serialization

This is required as csv writer doesn't expose the serde::Serializer implementation, so we can't just use that trait in place of the output writer
This commit is contained in:
piv
2023-03-15 21:48:49 +10:30
parent 83a4fc28cc
commit 7949a0a07b
4 changed files with 53 additions and 14 deletions

View File

@@ -1,10 +1,9 @@
mod move_money;
pub use self::move_money::*;
use std::ffi::c_char;
use std::ffi::CStr;
use std::ffi::CString;
pub use self::move_money::*;
mod overhead_allocation;
pub use self::overhead_allocation::*;