[package]
edition = "2021"
rust-version = "1.60.0"
name = "erra"
version = "0.1.0"
authors = ["Zaud Rehman"]
build = false
exclude = [
".github/",
"benches/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Zero-dependency, type-preserving error annotation for Result"
documentation = "https://docs.rs/erra"
readme = "README.md"
keywords = [
"error",
"context",
"result",
"no-std",
"ergonomics",
]
categories = [
"rust-patterns",
"no-std",
"development-tools::debugging",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ZaudRehman/erra"
[features]
alloc = []
default = ["std"]
std = ["alloc"]
[lib]
name = "erra"
path = "src/lib.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "chaining"
path = "tests/chaining.rs"
[[test]]
name = "no_std_static"
path = "tests/no_std_static.rs"
[[test]]
name = "type_checks"
path = "tests/type_checks.rs"
[dependencies]
[dev-dependencies.criterion]
version = "0.5"
features = []
[dev-dependencies.static_assertions]
version = "1"