[package]
edition = "2024"
name = "mabe"
version = "1.4.0"
authors = ["Amon Rayfa <amon@koseka.net>"]
build = false
include = [
"src/**/*",
"tests/**/*",
"LICENSE",
"README.md",
"Cargo.toml",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple framework for creating debug-friendly error enums in Rust."
homepage = "https://github.com/AmonRayfa/mabe"
readme = "README.md"
keywords = [
"debugging",
"enum",
"errors",
"framework",
"simple",
]
categories = ["development-tools::debugging"]
license = "Apache-2.0"
repository = "https://github.com/AmonRayfa/mabe"
[features]
colorize = []
default = []
[lib]
name = "mabe"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "struct_variants"
path = "tests/struct_variants.rs"
[[test]]
name = "tuple_variants"
path = "tests/tuple_variants.rs"
[[test]]
name = "unit_variants"
path = "tests/unit_variants.rs"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "1.0"
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3