[package]
edition = "2024"
name = "fack"
version = "0.2.0"
authors = ["wafkse"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Declarative error handling library with no_std support and composable code generation"
homepage = "https://github.com/wafkse/fack"
documentation = "https://docs.rs/fack"
readme = "README.md"
keywords = [
"error",
"derive",
"no-std",
"macro",
"declarative",
]
categories = [
"development-tools::procedural-macro-helpers",
"no-std",
"rust-patterns",
]
license = "GPL-3.0"
repository = "https://github.com/wafkse/fack"
[lib]
name = "fack"
path = "src/lib.rs"
[[test]]
name = "compile_fail"
path = "tests/compile_fail.rs"
[[test]]
name = "error"
path = "tests/error.rs"
[[test]]
name = "no_std"
path = "tests/no_std.rs"
[dependencies.fack-core]
version = "0.2.0"
[dependencies.fack-macro]
version = "0.2.0"
[dev-dependencies.trybuild]
version = "1.0"