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

@@ -23,6 +23,7 @@ chrono = {version = "0.4.23", features = ["default", "serde"]}
rayon = "1.6.0"
tokio = { version = "1.26.0", features = ["full"] }
sqlx = { version = "0.6", features = [ "runtime-tokio-rustls", "mssql" ] }
rmp-serde = "1.1.1"
# More info on targets: https://doc.rust-lang.org/cargo/reference/cargo-targets.html#configuring-a-target
[lib]