Postbag
Postbag is a high-performance binary serde codec for Rust that provides efficient data encoding with configurable levels of forward and backward compatibility.
Key Features
- Full fidelity of Rust type system: Supports all serde-compatible types including structs, enums, tuples, arrays, maps, and all primitive types
- Efficient binary format: Uses variable-length encoding (varint) for integers, compact representations for common types, and minimal overhead
- Configurable compatibility: Choose between space-efficient encoding (
Slim) or forward/backward compatible encoding (Full) with field identifiers
Quick Start
use ;
use ;
let original = Person ;
// Serialize to a byte vector using Full configuration
let bytes = to_full_vec.unwrap;
// Deserialize back to the original type
let deserialized: Person = from_full_slice.unwrap;
assert_eq!;
Encoding Configurations
Full Configuration
The Full configuration provides maximum compatibility and schema evolution capabilities:
- Forward/backward compatibility: Fields and enum variants can be reordered, added, or removed
- Schema evolution: Safe evolution of data structures over time
- Numerical identifier encoding: Fields named
_0through_59are encoded with just a single byte
Numerical Identifier Encoding
When using Full configuration, fields named _n (where n is 0-59) are encoded using just a single byte instead of the full string. Use #[serde(rename = "...")] to specify the numerical id for each field.
This can significantly reduce serialized size for structs with many fields:
use ;
This feature is entirely optional; regular field names continue to work as expected. Fields with normal and numerical names can be mixed without limitations in a single struct.
Slim Configuration
The Slim configuration prioritizes performance and compact size:
- Compact encoding: Smaller serialized data size
- Fast processing: No string lookups during serialization/deserialization
- Limited schema evolution: Fields/variants can only be added/removed at the end
Supported changes when using them Slim configuration:
- Adding fields to the end of structs (with serde defaults for deserialization)
- Removing fields from the end of structs (with serde defaults for deserialization)
- Adding enum variants at the end
- Removing enum variants from the end
Important: Fields and enum variants must maintain their order for compatibility when using Slim configuration.
Experimental Fast Compile Mode (for development use)
Postbag supports an optional fast compile mode that reduces compilation time at the cost of buffering struct field data in memory during deserialization (instead of streaming it directly from the reader).
Enable it by setting the postbag_fast_compile cfg flag:
RUSTFLAGS="--cfg postbag_fast_compile"
Or add it to your .cargo/config.toml for development:
[]
= ["--cfg", "postbag_fast_compile"]
This flag is intended for development use only. Production builds should use the default streaming mode.
Limitation: Forward/backward compatibility for adding or removing struct fields in the middle (i.e. not at the end) is not supported in fast compile mode. Adding or removing fields at the end of structs continues to work.
Origins
Postbag started as a fork of postcard with the intent to add forward and backward compatibility to the serialized data format. While postcard provides excellent performance and compact encoding, postbag extends this foundation to support schema evolution and data format compatibility across different versions of your applications.
License
Postbag is licensed under the Apache 2.0 license.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Postbag by you, shall be licensed as Apache 2.0, without any additional terms or conditions.