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: Struct fields and enum variants named
_0through_59are encoded with just a single byte
Numerical Identifier Encoding
When using Full configuration, struct fields and enum variants 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 or variant.
This can significantly reduce serialized size for structs with many fields and enums with long variant names:
use ;
This feature is entirely optional; regular field and variant names continue to work as expected. Normal and numerical names can be mixed without limitations within a single struct or enum.
Names that do not have the form _n, as well as ids of 60 and above, are encoded as regular strings.
Since the identifier determines compatibility, changing the id of a field or variant is a breaking change,
but fields and variants can be reordered freely.
In addition, the compact module provides more
efficient representations of common types from the standard library.
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.
Nesting Depth Limit
Serialization and deserialization of nested data is recursive, so deeply nested
data consumes stack space. To prevent untrusted input from aborting the process
by overflowing the stack, the nesting depth is limited to cfg::DEFAULT_DEPTH_LIMIT
(128) and exceeding it fails with Error::RecursionLimit.
This only becomes relevant for recursive types, since the nesting depth of non-recursive types is bounded by the type itself. Unknown fields are skipped by length, thus unknown data cannot cause recursion.
The limit is part of the configuration:
# use ;
#
#
# let my_value = MyType ;
use ;
let cfg = new.with_depth_limit;
let bytes = to_vec.unwrap;
let value: MyType = from_slice.unwrap;
Raise it for legitimately deeply nested data, or lower it when deserializing untrusted input on threads with a small stack.
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.