[dependencies.itertools]
version = "0.14.0"
[[example]]
name = "readme"
path = "examples/readme/main.rs"
[lib]
name = "app_error"
path = "src/lib.rs"
[lints.clippy]
items_after_statements = "allow"
let_underscore_untyped = "warn"
match_bool = "allow"
module_inception = "allow"
option_if_let_else = "allow"
single_match_else = "allow"
unwrap_used = "deny"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
explicit_outlives_requirements = "warn"
meta_variable_misuse = "warn"
noop_method_call = "warn"
single_use_lifetimes = "warn"
trivial_numeric_casts = "warn"
unsafe_code = "forbid"
unsafe_op_in_unsafe_fn = "forbid"
unused_lifetimes = "warn"
unused_macro_rules = "warn"
unused_results = "warn"
variant_size_differences = "warn"
[package]
authors = ["Filipe Rodrigues <filipejacintorodrigues1@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["rust-patterns"]
description = "Error type for applications"
edition = "2024"
homepage = "https://github.com/zenithsiz/app-error"
keywords = ["error", "error-handling"]
license = "MIT OR Apache-2.0"
name = "app-error"
readme = "README.md"
repository = "https://github.com/zenithsiz/app-error"
version = "0.1.0"