[package] name = "error_tools" version = "0.15.0" edition = "2021" authors = [ "Kostiantyn Wandalen ", "Dmytro Kryvoruchko ", ] 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_typed", "error_untyped", ] full = [ "default", ] no_std = [] use_alloc = [ "no_std" ] enabled = [] error_typed = [ "thiserror" ] error_untyped = [ "anyhow" ] # = entry [dependencies] anyhow = { version = "~1.0", optional = true } thiserror = { version = "~1.0", optional = true } [dev-dependencies] test_tools = { workspace = true }