[package] name = "smarterr" version = "1.0.6" authors = ["Mike Mozal"] edition = "2021" readme = "README.md" description = "Smart error handling library" documentation = "https://docs.rs/smarterr" repository = "https://github.com/mozalmic/smarterr" license = "Apache-2.0" keywords = ["error", "smart", "library", "set"] [lib] [dependencies] errorset = { version = "1.0.6", optional = true } thiserror = { version = "1.0", optional = true } anyhow = { version = "1.0", optional = true } [features] atomic_error = ["dep:thiserror", "dep:anyhow"] errorset = ["dep:errorset", "atomic_error"] [dev-dependencies] smarterr = { path = ".", features = ["errorset"] } [workspace] exclude = ["errorset"]