[package]
edition = "2024"
rust-version = "1.95.0"
name = "erratic"
version = "0.11.3"
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",
"no-std",
]
license = "MIT"
repository = "https://github.com/lansyin/erratic"
[features]
backtrace = []
default = []
[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]