postbag 1.0.1

💼 Postbag is a compact binary serde codec for Rust with built-in support for schema evolution. Fields and enum variants can be added, removed and reordered while old and new programs continue to exchange data.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.95"
name = "postbag"
version = "1.0.1"
authors = [
    "Sebastian Urban <surban@surban.net>",
    "James Munns <james@onevariable.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "💼 Postbag is a compact binary serde codec for Rust with built-in support for schema evolution. Fields and enum variants can be added, removed and reordered while old and new programs continue to exchange data."
homepage = "https://remoc.rs/postbag/"
readme = "README.md"
keywords = [
    "serde",
    "serialization",
    "binary",
    "schema-evolution",
    "codec",
]
categories = ["encoding"]
license = "Apache-2.0"
repository = "https://github.com/remoc-rs/postbag"

[lib]
name = "postbag"
path = "src/lib.rs"

[[example]]
name = "convenience_api"
path = "examples/convenience_api.rs"

[[example]]
name = "numerical_identifiers"
path = "examples/numerical_identifiers.rs"

[[test]]
name = "allocation"
path = "tests/allocation.rs"

[[test]]
name = "compact"
path = "tests/compact.rs"

[[test]]
name = "compat"
path = "tests/compat.rs"

[[test]]
name = "depth"
path = "tests/depth.rs"

[[test]]
name = "enum_block"
path = "tests/enum_block.rs"

[[test]]
name = "format_version"
path = "tests/format_version.rs"

[[test]]
name = "header"
path = "tests/header.rs"

[[test]]
name = "loopback"
path = "tests/loopback.rs"

[[test]]
name = "recoverable"
path = "tests/recoverable.rs"

[[test]]
name = "skip"
path = "tests/skip.rs"

[[test]]
name = "unknown_length"
path = "tests/unknown_length.rs"

[dependencies.serde]
version = "1.0.229"
features = ["derive"]

[dev-dependencies.base64]
version = "0.23"

[dev-dependencies.serde]
version = "1"
features = ["derive"]

[dev-dependencies.serde_bytes]
version = "0.11"

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(postbag_fast_compile)"]