finance-query 2.7.0

A Rust library for querying financial data
Documentation
# cargo-deny configuration — supply-chain policy for the workspace.
# Run locally with: cargo deny check
# Docs: https://embarkstudios.github.io/cargo-deny/

[graph]
# Evaluate the full dependency graph across all feature flags.
all-features = true

[advisories]
# Fail on any crate with a known security advisory or that has been yanked.
yanked = "deny"
# Add advisory IDs here (with a justification) only to consciously accept a risk.
ignore = [
    # `paste` is unmaintained (not vulnerable). Compile-time-only proc-macro
    # pulled in via ct2rs -> tokenizers -> macro_rules_attribute for the
    # optional `translation-offline` feature; no fixed upstream release exists.
    # Revisit when tokenizers migrates off paste.
    "RUSTSEC-2024-0436",
    # `bincode` 1.x is unmaintained (not vulnerable). Dev-only: pulled in solely
    # by the `iai-callgrind` benchmark harness (the regression gate); never
    # compiled into the published crate or any shipped binary. Revisit when
    # iai-callgrind moves to bincode 2.x.
    "RUSTSEC-2025-0141",
    # `proc-macro-error2` is unmaintained (not vulnerable). Dev-only: pulled in
    # solely by `iai-callgrind-macros`; a compile-time proc-macro for the
    # benchmark harness, never shipped. Revisit when iai-callgrind drops it.
    "RUSTSEC-2026-0173",
]

[bans]
# Duplicate versions bloat the tree and widen the attack surface; warn for now.
multiple-versions = "warn"
# Wildcard ("*") version requirements are a supply-chain risk — disallow them.
wildcards = "deny"
allow-wildcard-paths = true
# Explicitly banned crates go here, e.g. { crate = "openssl", reason = "..." }.
deny = []

[licenses]
# Allow-list of licenses acceptable for an MIT-licensed project.
# A dependency whose license is not listed here fails the check.
allow = [
    "MIT",
    "Apache-2.0",
    "Apache-2.0 WITH LLVM-exception",
    "BSD-2-Clause",
    "BSD-3-Clause",
    "ISC",
    "Zlib",
    "MPL-2.0",
    "Unicode-DFS-2016",
    "Unicode-3.0",
    "CC0-1.0",
    "BSL-1.0",
    "Unlicense",
    "OpenSSL",
    "CDLA-Permissive-2.0",
]
confidence-threshold = 0.8
# Keep a forward-looking allow-list without warning about not-yet-used entries.
unused-allowed-license = "allow"
# Per-crate license exceptions go here when a crate needs a license not in `allow`.
exceptions = []

[sources]
# Only allow crates from the official crates.io registry; reject unknown
# registries and git sources
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]