error_tools 0.40.0

Basic exceptions handling mechanism
Documentation
[package]
name = "error_tools"
version = "0.40.0"
edition = "2021"
authors = [
  "Kostiantyn Mysnyk <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" ]


[lints]
workspace = true

[package.metadata.docs.rs]
features = [ "full" ]
all-features = false



# = features

[features]
default = [ "enabled", "error_untyped" ]
full = [ "enabled", "error_typed", "error_untyped" ]
no_std = []
use_alloc = [ "no_std" ]
enabled = []
diagnostics_runtime_assertions = []

error_typed = [ "thiserror" ]
error_untyped = [ "anyhow" ]

# = entry

[dependencies]
anyhow = { workspace = true, optional = true }
thiserror = { workspace = true, optional = true }

[dev-dependencies]
test_tools = { workspace = true, features = [ "full", "standalone_build" ] }