Crates.io | pdl-derive |
lib.rs | pdl-derive |
version | 0.3.1 |
source | src |
created_at | 2023-08-31 22:05:28.297653 |
updated_at | 2024-07-15 17:11:08.091952 |
description | PDL's derive macro |
homepage | |
repository | https://github.com/google/pdl/ |
max_upload_size | |
id | 960436 |
size | 26,767 |
PDL is a domain specific language for writing the definition of binary protocol packets. Parsing and validating packets from raw bytes is tedious and error prone in any language. PDL generates memory safe and tailored backends for multiple target languages:
- Rust
- C++
- Python
Historically PDL was developed as part of the Android Bluetooth stack (bluetooth_packetgen) as a way to generate the parser and serializer for Bluetooth packets, and reduce the number of memory safety issues that come with manipulating and validating raw data.
cargo run my-protocol.pdl --output-format rust > my-protocol.rs
Language specific instructions are provided for all supported backends: