[package]
edition = "2024"
name = "pbf"
version = "1.22.1"
authors = ["Craig O'Connor <oconnorct1@gmail.com>"]
build = false
exclude = [
"/assets",
"/coverage",
"/benchmarks",
"/dist",
"/node_modules",
"/target",
"/docs",
"/tests",
"/tools",
"/src",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Mininmal protobuffer module; Build your own glue."
homepage = "https://github.com/Open-S2/pbf"
documentation = "https://docs.rs/pbf"
readme = "README.md"
keywords = [
"pbf",
"protobuffers",
"minimal",
"low-cost-code",
]
categories = [
"encoding",
"wasm",
"embedded",
"no-std",
]
license = "MIT"
repository = "https://github.com/Open-S2/pbf"
resolver = "2"
[features]
default = ["derive"]
derive = ["pbf-derive"]
[lib]
name = "pbf"
path = "lib.rs"
bench = true
[dependencies.pbf-core]
version = "1.22.1"
[dependencies.pbf-derive]
version = "1.22.1"
optional = true
[dev-dependencies]
[profile.bench]
opt-level = 3