[dependencies.anyhow]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.eyre]
version = "0.6"
[lib]
name = "okerr"
path = "src/lib.rs"
[package]
authors = ["Nicolas talle <dev@nicolab.net>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["rust-patterns", "data-structures"]
description = "Ergonomic result / error handling helpers built on anyhow and thiserror."
documentation = "https://docs.rs/okerr"
edition = "2024"
keywords = ["error", "error-handling", "result", "anyhow", "thiserror"]
license = "MIT"
name = "okerr"
readme = "README.md"
repository = "https://github.com/nicolab/okerr"
version = "1.0.0"
[[test]]
name = "anyerr_macro_test"
path = "tests/anyerr_macro_test.rs"
[[test]]
name = "context_test"
path = "tests/context_test.rs"
[[test]]
name = "derive_error_test"
path = "tests/derive_error_test.rs"
[[test]]
name = "ensure_macro_test"
path = "tests/ensure_macro_test.rs"
[[test]]
name = "err_macro_test"
path = "tests/err_macro_test.rs"
[[test]]
name = "fail_macro_test"
path = "tests/fail_macro_test.rs"
[[test]]
name = "from_boxed_error_test"
path = "tests/from_boxed_error_test.rs"
[[test]]
name = "nested_errors_test"
path = "tests/nested_errors_test.rs"
[[test]]
name = "std_error_compatibility_test"
path = "tests/std_error_compatibility_test.rs"
[[test]]
name = "wrap_err_test"
path = "tests/wrap_err_test.rs"