-
Notifications
You must be signed in to change notification settings - Fork 42
[Feature Request] Add Postcard Encoding #69
Comments
Hello. I didn't know about the postcard encoding. After reading the specs briefly, it looks like
At this point, I'm only aware of the following differences between postcard and LCS:
Am I missing anything? If not, it seems that it should be rather easy to support (one version of) the postcard runtime in basically all languages (by cloning 2 source files). The only thing is that we should make sure that there is indeed a valid use case. E.g. for security / cryptography applications, I would recommend using LCS instead. Note that the codegen callbacks into LCS/bincode runtimes are relatively stable now (except maybe method names in Java should eventually switch to snake case). Therefore, it shouldn't matter too much if we support postcard officially in this repo or not. |
Yeah, I opened this issue before I started implementing the postcard runtime. Given the similarities between postcard and bincode/lcs (as you noted) it should be easy to support this on all supported languages. As for using LCS, that's something I hadn't considered. The formats are obviously quite similar, but the supporting library does not support I would have no issue maintaining this out-of-tree, I just wanted to upstream it in case it could help someone else. |
I was just wondering if it wouldn't be less hassle (and possibly beneficial to everyone) to have the Rust |
For the records, LCS was renamed into BCS ("Binary Canonical Serialization"). |
🚀 Feature Request
Implement code generation for the postcard encoding.
Motivation
Postcard is a popular encoding within the niche of Rust embedded code. It is a simple binary encoding optimized for embedded devices.
Pitch
I'm going to be working on implementing postcard encoding with serde-reflection, and would like to upstream this code if possible.
My project only needs the C# runtime, should we require a runtime implementation for each language? In the longer term this MxN requirement could become onerous.
The maintenance burden should be considered for such a niche encoding. Postcard is very simple and fairly stable at this point, but it is not 1.0 so we may end up tracking different versions with different releases. I don't think there is demand for supporting multiple postcard versions.
The text was updated successfully, but these errors were encountered: