error-rail 0.11.0

ErrorRail is a no_std compatible Error Handling library for the Rust language.
Documentation
# Cargo-deny configuration file
# Settings for dependency graph
[graph]
# List of target platforms to support
targets = [
    "x86_64-unknown-linux-gnu",
    "aarch64-unknown-linux-gnu",
    "x86_64-unknown-linux-musl",
    "aarch64-apple-darwin",
    "x86_64-apple-darwin",
    "x86_64-pc-windows-msvc",
]

# Settings for security vulnerabilities and unmaintained crates check
[advisories]
# How to handle unmaintained crates (all, workspace, transitive, none)
unmaintained = "none"
# List of security vulnerabilities to ignore
# [[advisories.ignore]]
# id = "RUSTSEC-2020-0001"
# reason = "reason"

# License settings
[licenses]
# List of allowed licenses
allow = [
    "MIT",
    "Apache-2.0",
    "Unicode-3.0",
    "Unlicense",
]

# License matching confidence threshold (0.0 ~ 1.0)
confidence-threshold = 0.8

# License exceptions for specific crates
# [[licenses.clarify]]
# name = "ring"
# expression = "ISC AND MIT AND OpenSSL"
# license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]

# Dependency version policy settings
[bans]
# Whether to allow multiple versions of the same crate (deny, warn, allow)
multiple-versions = "warn"
# Whether to allow wildcard versions (deny, warn, allow)
wildcards = "warn"

# List of specific crates to allow
allow = [
    # { name = "some-crate", version = "=1.2.3" },
]

# List of specific crates to ban
# deny = [
#     { name = "bad-crate", version = "*" },
# ]

# List of crates to skip (exclude from checks)
# skip = [
#     { name = "skipped-crate", version = "*" },
# ]