[package]
edition = "2024"
rust-version = "1.85"
name = "bauer"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A derive macro for automatically generating the builder pattern"
readme = "README.md"
keywords = [
"builder",
"constructor",
"derive-macro",
"type-state",
"macro",
]
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 = "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 = "array"
path = "tests/array.rs"
[[test]]
name = "complex"
path = "tests/complex.rs"
[[test]]
name = "generics"
path = "tests/generics.rs"
[[test]]
name = "infallible"
path = "tests/infallible.rs"
[[test]]
name = "simple"
path = "tests/simple.rs"
[[test]]
name = "ui"
path = "tests/ui.rs"
[dependencies.bauer-macros]
version = "=0.4.0"
[dev-dependencies.trybuild]
version = "1.0.114"