errortools 0.1.0

Quality of life utilities for error handling in Rust.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "errortools"
version = "0.1.0"
authors = ["Max Wase <max.vvase@gmail.com>"]
build = false
include = [
    "src/**/*.rs",
    "examples/**/*.rs",
    "README.md",
    "CHANGELOG.md",
    "LICENSE*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Quality of life utilities for error handling in Rust."
homepage = "https://github.com/maxwase/errortools"
documentation = "https://docs.rs/errortools"
readme = "README.md"
keywords = [
    "error",
    "main",
    "thiserror",
    "format",
    "chain",
]
categories = [
    "rust-patterns",
    "command-line-interface",
    "no-std",
]
license = "MIT"
repository = "https://github.com/maxwase/errortools"

[features]
default = ["std"]
std = ["itertools/use_std"]

[lib]
name = "errortools"
path = "src/lib.rs"

[[example]]
name = "custom_format"
path = "examples/custom_format.rs"

[[example]]
name = "format_error"
path = "examples/format_error.rs"

[[example]]
name = "one_line"
path = "examples/one_line.rs"

[[example]]
name = "transparent"
path = "examples/transparent.rs"

[[example]]
name = "tree"
path = "examples/tree.rs"

[dependencies.itertools]
version = "0.14"
default-features = false

[dev-dependencies.thiserror]
version = "2"