[package]
edition = "2024"
rust-version = "1.85"
name = "bauer"
version = "0.5.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A derive macro for automatically generating builders"
readme = "README.md"
keywords = [
"builder",
"constructor",
"derive-macro",
"type-state",
"typestate",
]
categories = [
"rust-patterns",
"development-tools",
"data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/funnyboy-roks/bauer"
resolver = "2"
[features]
unlimited_range = ["bauer-macros/unlimited_range"]
[lib]
name = "bauer"
path = "src/lib.rs"
[[example]]
name = "adapter"
path = "examples/adapter.rs"
[[example]]
name = "complex"
path = "examples/complex.rs"
[[example]]
name = "complex-type-state"
path = "examples/complex-type-state.rs"
[[example]]
name = "generic"
path = "examples/generic.rs"
[[example]]
name = "konst"
path = "examples/konst.rs"
[[example]]
name = "simple"
path = "examples/simple.rs"
[[example]]
name = "simple-type-state"
path = "examples/simple-type-state.rs"
[[example]]
name = "type_state"
path = "examples/type_state.rs"
[[test]]
name = "adapter-comprehensive"
path = "tests/adapter-comprehensive.rs"
[[test]]
name = "adapter-generics"
path = "tests/adapter-generics.rs"
[[test]]
name = "array"
path = "tests/array.rs"
[[test]]
name = "attributes"
path = "tests/attributes.rs"
[[test]]
name = "build_fn"
path = "tests/build_fn.rs"
[[test]]
name = "build_fn_rename"
path = "tests/build_fn_rename.rs"
[[test]]
name = "collector"
path = "tests/collector.rs"
[[test]]
name = "complex"
path = "tests/complex.rs"
[[test]]
name = "complex-generics"
path = "tests/complex-generics.rs"
[[test]]
name = "comprehensive-edge-cases"
path = "tests/comprehensive-edge-cases.rs"
[[test]]
name = "doc"
path = "tests/doc.rs"
[[test]]
name = "dup"
path = "tests/dup.rs"
[[test]]
name = "errors"
path = "tests/errors.rs"
[[test]]
name = "force-result"
path = "tests/force-result.rs"
[[test]]
name = "generics"
path = "tests/generics.rs"
[[test]]
name = "infallible"
path = "tests/infallible.rs"
[[test]]
name = "konst"
path = "tests/konst.rs"
[[test]]
name = "on"
path = "tests/on.rs"
[[test]]
name = "raw-identifiers"
path = "tests/raw-identifiers.rs"
[[test]]
name = "repeat"
path = "tests/repeat.rs"
[[test]]
name = "simple"
path = "tests/simple.rs"
[[test]]
name = "skip"
path = "tests/skip.rs"
[[test]]
name = "type-state-visibility"
path = "tests/type-state-visibility.rs"
[[test]]
name = "ui"
path = "tests/ui.rs"
[dependencies.bauer-macros]
version = "=0.5.0"
[dev-dependencies.trybuild]
version = "1.0.114"