[package]
edition = "2024"
name = "daemonic_error"
version = "0.1.0"
build = false
exclude = ["src/ARCHIVE"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Errors that compose, predict, and leave receipts - Compose: algebraic combination (in active development) - Predict: Glass/Severity - Receipts: audit trail, position, checksum
- Reflection: Runtime Reflection through TopologySegment (in active development)
"""
readme = false
license = "MIT"
resolver = "2"
[features]
DaemonicCompiler = []
Libc = []
[lib]
name = "daemonic_error"
path = "src/lib.rs"
[dependencies]
[lints.clippy]
all = "warn"
cargo = "warn"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cognitive_complexity = "allow"
complexity = "warn"
correctness = "deny"
match_bool = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_inception = "allow"
module_name_repetitions = "allow"
nursery = "warn"
pedantic = "warn"
perf = "warn"
similar_names = "allow"
single_match_else = "allow"
style = "warn"
suspicious = "deny"
too_many_arguments = "allow"
too_many_lines = "allow"
[lints.rust]
dead_code = "warn"
missing_debug_implementations = "warn"
missing_docs = "warn"
unreachable_code = "deny"
unsafe_code = "warn"
unused_imports = "warn"
unused_mut = "warn"
unused_variables = "warn"