17 unstable releases (4 breaking)
new 0.5.1 | Dec 19, 2024 |
---|---|
0.4.0 | Oct 14, 2024 |
0.3.3 | Feb 4, 2024 |
0.3.2 | Aug 20, 2023 |
0.1.2 | Nov 26, 2022 |
#2355 in Encoding
163 downloads per month
Used in 2 crates
210KB
5.5K
SLoC
Postcard Bindgen
Postcard Bindgen
generates code for other languages to serialize and deserialize postcard byte format. This facilitates communication between, for example, a microcontroller and a mobile app using the postcard
crate.
Structs and enums can be annotated with PostcardBindings
to generate code. The generated code can be exported as an npm package for JavaScript or a pip package for Python.
Supported Languages
- 🌐 JavaScript
- 🐍 Python
Usage
⚠️ Use rust nightly to run the crate that generates the bindings. This crate depends on genco, which uses a nightly feature.
Annotate structs and enums with Serialize
/Deserialize
from the serde crate and the PostcardBindings
macro from this crate.
The process has two steps:
- Annotate structs and enums in a library crate.
- Import the annotated structs and enums in a binary crate, add the generation logic, and run the binary crate to generate the npm package.
Enable the
generating
feature ifpostcard-bindgen
is added as a dependency in the generation binary crate.
Example
This example shows how to generate an npm package. The struct Test
and the generation logic are in the same Rust file.
#[derive(Serialize, PostcardBindings)]
struct Test {
name: u8,
other: u16,
}
fn main() {
javascript::build_package(
std::env::current_dir().unwrap().as_path(),
PackageInfo {
name: "generation-test".into(),
version: "0.1.0".try_into().unwrap(),
},
javascript::GenerationSettings::enable_all(),
generate_bindings!(Test),
)
.unwrap();
}
The following code can now be used to serialize an object in JavaScript.
import { serialize } from "generation-test";
const test = {
name: "test",
other: 23
}
const bytes = serialize("Test", test)
Type mappings
Type Name | Rust | Js | Python |
Unit Type |
|
|
|
Tuple Struct |
|
|
|
Struct |
|
|
|
Enum |
|
|
|
Option |
|
|
|
Map |
|
|
|
License
Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Postcard Bindgen by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions
Dependencies
~0–490KB