[package]
name = "error_tools"
version = "0.4.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <wandalen@obox.systems>",
"Dmytro Kryvoruchko <dmytro.kr@obox.systems>",
]
license = "MIT"
readme = "Readme.md"
documentation = "https://docs.rs/error_tools"
repository = "https://github.com/Wandalen/wTools/tree/master/module/core/error_tools"
homepage = "https://github.com/Wandalen/wTools/tree/master/module/core/error_tools"
description = """
Basic exceptions handling mechanism.
"""
categories = [ "algorithms", "development-tools" ]
keywords = [ "fundamental", "general-purpose" ]
[package.metadata.docs.rs]
features = [ "full" ]
all-features = false
exclude = [ "/tests", "/examples", "-*" ]
[features]
default = [
"enabled",
"error_for_lib",
"error_for_app",
]
full = [
"enabled",
"error_for_lib",
"error_for_app",
]
no_std = []
use_alloc = []
enabled = []
error_for_lib = [ "thiserror" ]
error_for_app = [ "anyhow" ]
[dependencies]
anyhow = { version = "~1.0", optional = true }
thiserror = { version = "~1.0", optional = true }
[dev-dependencies]