[package]
edition = "2024"
rust-version = "1.95.0"
name = "erratic"
version = "0.8.0"
authors = ["Little Lan <lansyin@foxmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Handling errors in an efficient way. "
homepage = "https://github.com/lansyin/erratic"
readme = "README.md"
keywords = [
"error",
"error-handling",
]
categories = ["rust-patterns"]
license = "MIT"
repository = "https://github.com/lansyin/erratic"
[lib]
name = "erratic"
path = "src/lib.rs"
[[test]]
name = "context"
path = "tests/context.rs"
[[test]]
name = "error"
path = "tests/error.rs"
[[test]]
name = "payload"
path = "tests/payload.rs"
[[test]]
name = "state"
path = "tests/state.rs"
[[test]]
name = "ui"
path = "tests/ui.rs"
[dependencies]