[package]
edition = "2024"
name = "buffa-reflect-build"
version = "0.2.0"
authors = ["Tyr Chen <tyr.chen@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Build-script integration that drives buffa-build and decorates generated code for reflection."
homepage = "https://github.com/tyrchen/buffa-reflect"
documentation = "https://docs.rs/buffa-reflect"
readme = "README.md"
keywords = [
"protobuf",
"reflection",
"buffa",
"build",
]
categories = ["development-tools::build-utils"]
license = "MIT"
repository = "https://github.com/tyrchen/buffa-reflect"
[lib]
name = "buffa_reflect_build"
path = "src/lib.rs"
[[test]]
name = "build_buf"
path = "tests/build_buf.rs"
[[test]]
name = "build_protoc"
path = "tests/build_protoc.rs"
[dependencies.buffa]
version = "0.5"
features = ["std"]
default-features = false
[dependencies.buffa-build]
version = "0.5"
[dependencies.buffa-descriptor]
version = "0.5"
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.tempfile]
version = "3"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"